Simple Xcode Interface Question I am new and am the emperor of noobs. I have just started using a mac and am a little more used to Visual Studio, but I just got Xcode (so far I love xcode).
One thing I miss from Visual Studio (when using C or C++) is its ability to display a menu of class/structure members while you are coding for example:
typedef struct
{
int bob;
double bob1;
char letter;
int number;
}
SOME_STRUCTURE;
SOME_STRUCTURE struck;
struck.
On Visual studio, after I typed that dot after "struck" a menu of my structure members would appear.
I may seem lazy to want this feature, but it's really a big help when programming using the system's built in classes. I don't like having to open the header file, find the class, and view what's in it. A simple menu shows class members and by their name you can tell what they do. |