I am trying to make an iOS application not for the App Store involving customized screen savers, automatic starting and ending of phone calls, and contact restrictions. I have not been able to find resources and information regarding private, undocumented APIs, however. Does anyone have a pointer?
Asked
Active
Viewed 1,586 times
0
-
3Perhaps you can't find it because it's *private* and *undocumented*... – rob mayoff Nov 28 '11 at 07:49
-
There has to be some way, because when looking at "Cydia" store, these kind of applications are already available. – Matrix Nov 28 '11 at 08:54
-
[iOS Private API Documentation](http://stackoverflow.com/questions/1150360/ios-private-api-documentation) – beryllium Nov 28 '11 at 12:33
2 Answers
1
If you just need to know something which is exposed via Objective C - you can look at https://github.com/rpetrich/iphoneheaders (or generate them yourself via class-dump-z) Many private frameworks are here.
You also should look at http://iphonedevwiki.net/index.php/Main_Page If you need access to undocumented C APIs and can't find examples...well,your only way in this case is IDA Pro

Tauri
- 1,291
- 1
- 14
- 28
0
This is never required, but if you want to do this then this is simply done like testing your app on your iPhone.
Just create an app in the developer account, add your iPhone, get development certificate & provisioning profile then install app directly to your iPhone.

Luke
- 11,426
- 43
- 60
- 69

mastermind
- 1,057
- 1
- 8
- 15
-
my question wasn't about how to install and run application into device. – Matrix Nov 28 '11 at 08:29