Reputation: 941
I can open the header files by command-clicking in XCode - but I want to know where they are located.
I want to parse them for a project (as text files, not as header files).
I've looked all over on my disk - to find them.
For instance - where is UIViewController.h located?
Upvotes: 7
Views: 4597
Reputation: 5431
SDK headers are located in the Xcode installation.
For example:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h
Upvotes: 13