Matrix
Matrix

Reputation: 7613

Where can I find information about private iPhone APIs?

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?

Upvotes: 0

Views: 1595

Answers (2)

mastermind
mastermind

Reputation: 1057

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.

Upvotes: 0

Tauri
Tauri

Reputation: 1299

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

Upvotes: 1

Related Questions