Ccna final exam - java, php, javascript, ios, cshap all in one. This is a collaboratively edited question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
Monday, May 21, 2012
iOS Private API Documentation
Is there a web site or project documenting private APIs for the iPhone SDK?
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.
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.
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.
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.
ReplyDeleteThese are the compilable headers generated by class-dump-z, a iOS class dumper:
ReplyDeletehttp://github.com/kennytm/iphone-private-frameworks
There is a Stack Exchange proposal but it's lacking support:
ReplyDelete[...]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
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.
ReplyDeletelink --> http://www.chimpstudios.com/appscanner/
here are searchable archives from iPhone OS 2.2.1 to iOS 5
ReplyDeletehttps://github.com/nst/iOS-Runtime-Headers
I don't know of a list of only private ones. But you can get the complete apis from Erica Sadun's site.
ReplyDeleteWhen using private api's keep this one in mind.
http://ericasadun.com/iPhoneDocs312/files.html
ReplyDeleteThis is provided by the ericasadun
You might also find my "private-dumper" ruby gem useful: http://rubygems.org/gems/private-dumper
ReplyDelete