Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS Private API Documentation [closed]

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

like image 572
Richard Stelling Avatar asked Jul 19 '09 17:07

Richard Stelling


3 Answers

here are searchable archives from iPhone OS 2.2.1 to iOS 9.2

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

like image 186
nst Avatar answered Nov 08 '22 09:11

nst


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.

like image 20
Dylan Copeland Avatar answered Nov 08 '22 08:11

Dylan Copeland


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

like image 11
Jano Avatar answered Nov 08 '22 07:11

Jano