XCode newbie: How to find the source code for standard or system libraries?
Posted
by Jan Hettich
on Stack Overflow
See other posts from Stack Overflow
or by Jan Hettich
Published on 2010-05-11T01:02:22Z
Indexed on
2010/05/11
1:04 UTC
Read the original article
Hit count: 364
xcode
XCode newbie question here: If I'm programming in C++ or objective C, and I #include or #import a library; e.g.
#include <iostream>
#import <Cocoa/Cocoa.h>
I'm often not sure where to look for these header files in the directory structure on my Mac. In other development environments, you can right click the included or imported filename and have the option to jump to source. Is there such a feature in XCode?
Also, for the standard C++ libraries and the Cocoa framework, is the source code for the implementation files available, or only the headers together with compiled link libraries?
Thanks!
© Stack Overflow or respective owner