├── .gitattributes ├── .github └── workflows │ └── deploy-to-production.yml ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── CODE_OF_CONDUCT.md ├── Main Site Sources ├── coming-soon-landing │ └── index.html ├── css │ ├── bootstrap-icons.min.css │ ├── bootstrap.min.css │ └── prism-default-dark.css ├── feed.rss ├── fonts │ ├── bootstrap-icons.woff │ └── bootstrap-icons.woff2 ├── index.html ├── js │ ├── bootstrap.bundle.min.js │ └── syntax-highlighting.js ├── robots.txt └── sitemap.xml ├── Package.swift ├── README.md └── Sources ├── NotPrivateAPIs └── NotPrivateAPIs.docc │ ├── Resources │ ├── UICustomViewMenuElement-Image.png │ ├── _actionWithContentViewController-Image.png │ ├── _menuAccessoryViewProvider-Image.jpeg │ ├── _separatedHeaderContentViewController-Image.png │ └── contentViewController-Image.png │ └── UIKit │ ├── LSApplicationProxy │ ├── LSApplicationProxy.md │ └── setAlternateIconName.md │ ├── LSBundleProxy │ ├── LSBundleProxy.md │ └── bundleProxyForCurrentProcess.md │ ├── UIAlertController │ ├── _actionWithContentViewController.md │ ├── _separatedHeaderContentViewController.md │ └── contentViewController.md │ ├── UIApplication │ ├── UIApplication.md │ └── _setAlternateIconName.md │ └── UIMenu │ ├── UICustomViewMenuElement.md │ ├── UIMenu.md │ └── _menuAccessoryViewProvider.md └── NotPrivateApis ├── File.swift └── NotPrivateApis.docc ├── NSObject └── ByDevice │ ├── ByDevice.md │ └── hasDynamcIsland.md ├── NotPrivateApis.md ├── Resources ├── SwiftUI-variableBlur-Image.jpeg ├── UINavigationBar-Image1.png ├── UINavigationBar-Image2.png ├── UINavigationBar-Image3.png ├── UINavigationBar-Image4.png ├── ViewModifier-Image.png ├── _UINavigationBarPalette-Video.gif ├── __largeTitleTwoLineMode-Image.jpeg ├── _accessoryView-Video.gif ├── _setHeaderContentViewController-Video.gif └── setAttributedPlaceholder-Video.gif ├── SwiftUI └── ViewModifier │ ├── ViewModifier.md │ └── variableBlur.md ├── UIKit ├── UIAlertController │ ├── UIAlertController.md │ └── _setHeaderContentViewController.md ├── UINavigation │ ├── UINavigationBar │ │ ├── UINavigationBar.md │ │ ├── _UINavigationBarPalette.md │ │ └── _accessoryView.md │ └── UINavigationItem │ │ ├── UINavigationItem.md │ │ └── __largeTitleTwoLineMode.md └── UITextView │ ├── UITextView.md │ └── setAttributedPlaceholder.md ├── footer.html └── theme-settings.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/deploy-to-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/.github/workflows/deploy-to-production.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Main Site Sources/coming-soon-landing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Main Site Sources/coming-soon-landing/index.html -------------------------------------------------------------------------------- /Main Site Sources/css/bootstrap-icons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Main Site Sources/css/bootstrap-icons.min.css -------------------------------------------------------------------------------- /Main Site Sources/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Main Site Sources/css/bootstrap.min.css -------------------------------------------------------------------------------- /Main Site Sources/css/prism-default-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Main Site Sources/css/prism-default-dark.css -------------------------------------------------------------------------------- /Main Site Sources/feed.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Main Site Sources/feed.rss -------------------------------------------------------------------------------- /Main Site Sources/fonts/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Main Site Sources/fonts/bootstrap-icons.woff -------------------------------------------------------------------------------- /Main Site Sources/fonts/bootstrap-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Main Site Sources/fonts/bootstrap-icons.woff2 -------------------------------------------------------------------------------- /Main Site Sources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Main Site Sources/index.html -------------------------------------------------------------------------------- /Main Site Sources/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Main Site Sources/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /Main Site Sources/js/syntax-highlighting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Main Site Sources/js/syntax-highlighting.js -------------------------------------------------------------------------------- /Main Site Sources/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Main Site Sources/robots.txt -------------------------------------------------------------------------------- /Main Site Sources/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Main Site Sources/sitemap.xml -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/README.md -------------------------------------------------------------------------------- /Sources/NotPrivateAPIs/NotPrivateAPIs.docc/Resources/UICustomViewMenuElement-Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateAPIs/NotPrivateAPIs.docc/Resources/UICustomViewMenuElement-Image.png -------------------------------------------------------------------------------- /Sources/NotPrivateAPIs/NotPrivateAPIs.docc/Resources/_actionWithContentViewController-Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateAPIs/NotPrivateAPIs.docc/Resources/_actionWithContentViewController-Image.png -------------------------------------------------------------------------------- /Sources/NotPrivateAPIs/NotPrivateAPIs.docc/Resources/_menuAccessoryViewProvider-Image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateAPIs/NotPrivateAPIs.docc/Resources/_menuAccessoryViewProvider-Image.jpeg -------------------------------------------------------------------------------- /Sources/NotPrivateAPIs/NotPrivateAPIs.docc/Resources/_separatedHeaderContentViewController-Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateAPIs/NotPrivateAPIs.docc/Resources/_separatedHeaderContentViewController-Image.png -------------------------------------------------------------------------------- /Sources/NotPrivateAPIs/NotPrivateAPIs.docc/Resources/contentViewController-Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateAPIs/NotPrivateAPIs.docc/Resources/contentViewController-Image.png -------------------------------------------------------------------------------- /Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/LSApplicationProxy/LSApplicationProxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/LSApplicationProxy/LSApplicationProxy.md -------------------------------------------------------------------------------- /Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/LSApplicationProxy/setAlternateIconName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/LSApplicationProxy/setAlternateIconName.md -------------------------------------------------------------------------------- /Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/LSBundleProxy/LSBundleProxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/LSBundleProxy/LSBundleProxy.md -------------------------------------------------------------------------------- /Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/LSBundleProxy/bundleProxyForCurrentProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/LSBundleProxy/bundleProxyForCurrentProcess.md -------------------------------------------------------------------------------- /Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/UIAlertController/_actionWithContentViewController.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/UIAlertController/_actionWithContentViewController.md -------------------------------------------------------------------------------- /Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/UIAlertController/_separatedHeaderContentViewController.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/UIAlertController/_separatedHeaderContentViewController.md -------------------------------------------------------------------------------- /Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/UIAlertController/contentViewController.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/UIAlertController/contentViewController.md -------------------------------------------------------------------------------- /Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/UIApplication/UIApplication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/UIApplication/UIApplication.md -------------------------------------------------------------------------------- /Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/UIApplication/_setAlternateIconName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/UIApplication/_setAlternateIconName.md -------------------------------------------------------------------------------- /Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/UIMenu/UICustomViewMenuElement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/UIMenu/UICustomViewMenuElement.md -------------------------------------------------------------------------------- /Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/UIMenu/UIMenu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/UIMenu/UIMenu.md -------------------------------------------------------------------------------- /Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/UIMenu/_menuAccessoryViewProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateAPIs/NotPrivateAPIs.docc/UIKit/UIMenu/_menuAccessoryViewProvider.md -------------------------------------------------------------------------------- /Sources/NotPrivateApis/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/File.swift -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/NSObject/ByDevice/ByDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/NSObject/ByDevice/ByDevice.md -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/NSObject/ByDevice/hasDynamcIsland.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/NSObject/ByDevice/hasDynamcIsland.md -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/NotPrivateApis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/NotPrivateApis.md -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/Resources/SwiftUI-variableBlur-Image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/Resources/SwiftUI-variableBlur-Image.jpeg -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/Resources/UINavigationBar-Image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/Resources/UINavigationBar-Image1.png -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/Resources/UINavigationBar-Image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/Resources/UINavigationBar-Image2.png -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/Resources/UINavigationBar-Image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/Resources/UINavigationBar-Image3.png -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/Resources/UINavigationBar-Image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/Resources/UINavigationBar-Image4.png -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/Resources/ViewModifier-Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/Resources/ViewModifier-Image.png -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/Resources/_UINavigationBarPalette-Video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/Resources/_UINavigationBarPalette-Video.gif -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/Resources/__largeTitleTwoLineMode-Image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/Resources/__largeTitleTwoLineMode-Image.jpeg -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/Resources/_accessoryView-Video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/Resources/_accessoryView-Video.gif -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/Resources/_setHeaderContentViewController-Video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/Resources/_setHeaderContentViewController-Video.gif -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/Resources/setAttributedPlaceholder-Video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/Resources/setAttributedPlaceholder-Video.gif -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/SwiftUI/ViewModifier/ViewModifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/SwiftUI/ViewModifier/ViewModifier.md -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/SwiftUI/ViewModifier/variableBlur.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/SwiftUI/ViewModifier/variableBlur.md -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/UIKit/UIAlertController/UIAlertController.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/UIKit/UIAlertController/UIAlertController.md -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/UIKit/UIAlertController/_setHeaderContentViewController.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/UIKit/UIAlertController/_setHeaderContentViewController.md -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/UIKit/UINavigation/UINavigationBar/UINavigationBar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/UIKit/UINavigation/UINavigationBar/UINavigationBar.md -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/UIKit/UINavigation/UINavigationBar/_UINavigationBarPalette.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/UIKit/UINavigation/UINavigationBar/_UINavigationBarPalette.md -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/UIKit/UINavigation/UINavigationBar/_accessoryView.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/UIKit/UINavigation/UINavigationBar/_accessoryView.md -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/UIKit/UINavigation/UINavigationItem/UINavigationItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/UIKit/UINavigation/UINavigationItem/UINavigationItem.md -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/UIKit/UINavigation/UINavigationItem/__largeTitleTwoLineMode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/UIKit/UINavigation/UINavigationItem/__largeTitleTwoLineMode.md -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/UIKit/UITextView/UITextView.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/UIKit/UITextView/UITextView.md -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/UIKit/UITextView/setAttributedPlaceholder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/UIKit/UITextView/setAttributedPlaceholder.md -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/footer.html -------------------------------------------------------------------------------- /Sources/NotPrivateApis/NotPrivateApis.docc/theme-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mcrich-LLC/NotPrivateAPIs/HEAD/Sources/NotPrivateApis/NotPrivateApis.docc/theme-settings.json --------------------------------------------------------------------------------