Is there a web site or project documenting private APIs for the iPhone SDK?
            Asked
            
        
        
            Active
            
        
            Viewed 7.1k times
        
    77
            
            
         
    
    
        Victor Ronin
        
- 22,758
- 18
- 92
- 184
 
    
    
        Richard Stelling
        
- 25,607
- 27
- 108
- 188
- 
                    3As much as this question is off-topic, it still is a favorite of many! :) Net votes +46, +38 favorites, in 5 yrs - 50K views and last active 2 months ago! – Nirav Zaveri Jun 04 '15 at 13:16
- 
                    3There are bunch of ready made dudes to mark something off-topic or down vote a question. They just can't handle anything. – badhanganesh May 18 '17 at 21:22
4 Answers
38
            
            
        here are searchable archives from iPhone OS 2.2.1 to iOS 9.2
 
    
    
        Hugo Alonso
        
- 6,684
- 2
- 34
- 65
 
    
    
        nst
        
- 3,862
- 1
- 31
- 40
- 
                    3This 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 '12 at 22:31
- 
                    1It is having all up to date headers, but it doesnt have that much documentation as required, so, not able to use it perfectly, actually dont know how to use any of them – Mehul Thakkar Dec 10 '13 at 11:22
20
            
            
        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. 
 
    
    
        Dylan Copeland
        
- 1,249
- 1
- 11
- 20
- 
                    but what if i dont want to put my app on appstore, is there any documentation for using private apis? – Mehul Thakkar Dec 10 '13 at 11:20
11
            
            
        These are the compilable headers generated by class-dump-z, a iOS class dumper:
http://github.com/kennytm/iphone-private-frameworks
 
    
    
        Jano
        
- 62,815
- 21
- 164
- 192
- 
                    Ya, that is having all headers, but question here is for getting documentation for that – Mehul Thakkar Dec 10 '13 at 11:24
- 
                    Apple's SDK is not open source, and no one has bothered to reverse engineer and document more than a few classes. So headers are all there is. – Jano Jan 17 '14 at 17:36
1
            
            
        You might also find my "private-dumper" ruby gem useful: http://rubygems.org/gems/private-dumper
 
    
    
        Johannes Fahrenkrug
        
- 42,912
- 19
- 126
- 165