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

link|improve this question

79% accept rate
1  
Stack Exchange proposal: area51.stackexchange.com/proposals/18154/… – rjstelling Sep 1 '10 at 18:31
feedback

8 Answers

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.

link|improve this answer
feedback

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

link|improve this answer
feedback
up vote 6 down vote accepted

There is a Stack Exchange proposal but it's lacking support:

[...]for iOS developers who require help and advice when using undocumented iOS APIs. Developers who discover private iOS APIs and need a place to document them.

http://area51.stackexchange.com/proposals/18154/ios-private-apis

link|improve this answer
feedback

Try App Scanner. It doesn't contain documentation, but does let you look up method signatures, and also scan your .app file to make sure it doesn't contain private APIs before you submit to the iOS review team.

link --> http://www.chimpstudios.com/appscanner/

link|improve this answer
feedback

here are searchable archives from iPhone OS 2.2.1 to iOS 5

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

link|improve this answer
1  
This is probably the most up-to-date site, but it doesn't include C based frameworks, for example GraphicServices.Framework, etc. Obvious since the runtime only finds Objective-C things :) – nacho4d Jan 12 at 22:31
feedback

I don't know of a list of only private ones. But you can get the complete apis from Erica Sadun's site.

When using private api's keep this one in mind.

link|improve this answer
feedback

http://ericasadun.com/iPhoneDocs312/files.html This is provided by the ericasadun

link|improve this answer
Seems like that information is no longer available. – tcurdt Aug 9 '10 at 0:08
1  
that link is changed to ericasadun.com/HeaderDumpKit – Comptrol Dec 7 '10 at 19:55
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.