Skip to content

Xcode: Creating a New Project

Alfie Hanssen edited this page Nov 21, 2013 · 2 revisions

Xcode is the IDE (integrated development environment) that we use to build iOS Applications.

Create a new "Command Line Tool" project:

Create a Command Line Tool

The "Project Navigator":

Navigators Pane

Open main.c in the editor area:

int main(int argc, const char * argv[])
{
    // insert code here...
    printf("Hello, World!\n");
    return 0;
}