Reputation: 404
Is there any way to access Cocoa implementation(.m files not .h files) files in Xcode. I am using Xcode 6.4. I would like to explore implementation methods of classes For Eg NSView, NSTableView etc
Thanks in advance
Upvotes: 0
Views: 90
Reputation:
Although Apple doesn't expose the implementation files, you can examine class-dumped runtime headers to gain an understanding of how Apple may have implemented a feature.
GitHub is one source for such repositories although you'll find the runtime headers documented on many other sites.
While educational, you don't want to rely on any private methods or properties, as those internals can change even if the public API has not.
Upvotes: 1