Reputation: 25665
Is there a web site or project documenting private APIs for the iPhone SDK?
Upvotes: 77
Views: 71776
Reputation: 3882
here are searchable archives from iPhone OS 2.2.1 to iOS 9.2
https://github.com/nst/iOS-Runtime-Headers
Upvotes: 39
Reputation: 63707
These are the compilable headers generated by class-dump-z, a iOS class dumper:
http://github.com/kennytm/iphone-private-frameworks
Upvotes: 11
Reputation: 44818
You might also find my "private-dumper" ruby gem useful: http://rubygems.org/gems/private-dumper
Upvotes: 1
Reputation: 1249
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.
Upvotes: 20