iOS Private API Documentation

IphoneApiIos4DocumentationIphone Privateapi

Iphone Problem Overview


Is there a web site or project documenting private APIs for the iPhone SDK?

Iphone Solutions


Solution 1 - Iphone

here are searchable archives from iPhone OS 2.2.1 to iOS 9.2

https://github.com/nst/iOS-Runtime-Headers

Solution 2 - Iphone

Most likely. Just use the command line application class-dump to view the private headers. Note that your app will be rejected from the App Store for linking to private frameworks if you link at compile. It is easy enough to see that you are linking the private frameworks by running otool on your binary if linked at compile.

Solution 3 - Iphone

These are the compilable headers generated by class-dump-z, a iOS class dumper:
http://github.com/kennytm/iphone-private-frameworks

Solution 4 - Iphone

You might also find my "private-dumper" ruby gem useful: http://rubygems.org/gems/private-dumper

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionRichard StellingView Question on Stackoverflow
Solution 1 - IphonenstView Answer on Stackoverflow
Solution 2 - IphoneDylan CopelandView Answer on Stackoverflow
Solution 3 - IphoneJanoView Answer on Stackoverflow
Solution 4 - IphoneJohannes FahrenkrugView Answer on Stackoverflow