ok, I am beginning (and I mean beginning) objective-C development. I am currently a PHP developer... but that is beside the point.
Here is my problem! HOW DO I COMPILE?
here is my simple hello world app..
this is for the file main.m
right, so shouldnt I be able to hit this button?
and it bring up a terminal window that says "Hello World!"
Am I missing something? I mean I was able to compile it from the terminal and run it with no problem, so im guessing this is just an Xcode thing im not understanding.
Anyway can someone please help me?
Thanks
Here is my problem! HOW DO I COMPILE?
here is my simple hello world app..
this is for the file main.m
Code:
#import <stdio.h>
int main (int argc, const char *argv[])
{
printf ("Hello World!\n");
return 0;
}
right, so shouldnt I be able to hit this button?
and it bring up a terminal window that says "Hello World!"
Am I missing something? I mean I was able to compile it from the terminal and run it with no problem, so im guessing this is just an Xcode thing im not understanding.
Anyway can someone please help me?
Thanks