Private frames are frames that you cannot use. They are not expected to be used outside of Apple, hence "Private". They are often low-level libraries that can break the system if used incorrectly. (But frameworks must exist because Apple apps and public frameworks use private frameworks.)
Because private frameworks are not intended for public use, Apple does not need to provide any headings or documentation.
If you are writing for the AppStore, you should not use private frameworks (unless you are from Apple). The system will immediately reject your application before the start of the review process.
(On the other hand, you can use any framework for jailbroken platforms. Despite this, the private framework APIs are unstable and you should avoid them if possible.
Efforts are currently underway to document these private frameworks and APIs at http://iphonedevwiki.net/index.php/Main_Page .)
source share