Home > Articles > Programming > General Programming/Other Languages

Programming in Objective-C: Creating Your First Program

This chapter shows how to write your first Objective-C program. It sticks to the basics to help you understand the steps involved in keying in a program and compiling and running it.
This chapter is from the book

In this chapter, we dive right in and show you how to write your first Objective-C program. You won’t work with objects just yet; that’s the topic of the next chapter. We want you to understand the steps involved in keying in a program and compiling and running it.

To begin, let’s pick a rather simple example: a program that displays the phrase “Programming is fun!” on your screen. Without further ado, Program 2.1 shows an Objective-C program to accomplish this task.

Program 2.1

// First program example

#import <Foundation/Foundation.h>

int main (int argc, const char * argv[])
{
   @autoreleasepool {
      NSLog (@"Programming is fun!");
   }
   return 0;
}

Compiling and Running Programs

Before we go into a detailed explanation of this program, we need to cover the steps involved in compiling and running it. You can both compile and run your program using Xcode, or you can use the Clang Objective-C compiler in a Terminal window. Let’s go through the sequence of steps using both methods. Then you can decide how you want to work with your programs throughout the rest of this book.

Using Xcode

Xcode is a sophisticated application that enables you to easily type in, compile, debug, and execute programs. If you plan on doing serious application development on the Mac, learning how to use this powerful tool is worthwhile. We just get you started here. Later we return to Xcode and take you through the steps involved in developing a graphical application with it.

Once installed, Xcode is in your Applications folder. Figure 2.1 shows its icon.

Figure 2.1

Figure 2.1 Xcode icon

Start Xcode. (The first time you launch the application, you have to go through some one-time things like agreeing to the license agreement.) You can then select Create a New Xcode Project from the startup screen (see Figure 2.2). Alternatively, under the File menu, select New, Project.

Figure 2.2

Figure 2.2 Starting a new project

A window appears, as shown in Figure 2.3.

Figure 2.3

Figure 2.3 Starting a new project: selecting the application type

In the left pane, you’ll see a section labeled OS X. Select Application. In the upper-right pane, select Command Line Tool, as depicted in the previous figure. On the next pane that appears, you pick your application’s name. Enter prog1 for the product name and type in something in the Company Identifier and Bundle Identifier fields. The latter field is used for creating iOS apps, so we don’t need to be too concerned at this point about what’s entered there. Make sure Foundation is selected for the Type. Your screen should look like Figure 2.4.

Figure 2.4

Figure 2.4 Starting a new project: specifying the product name and type

Click Next. On the sheet that appears, you can specify the name of the project folder that will contain the files related to your project. Here, you can also specify where you want that project folder stored. According to Figure 2.5, we’re going to store our project on the Desktop in a folder called prog1.

Figure 2.5

Figure 2.5 Selecting the location and name of the project folder

Click the Create button to create your new project. Xcode then opens a project window such as the one shown in Figure 2.6. Note that your window might look different if you’ve used Xcode before or have changed any of its options. This figure shows the Utilities pane (the right-most pane). You can close that pane by deselecting the third icon listed in the View category in the top-right corner of your Xcode toolbar. Note that the categories are not labeled by default. To get the labels to appear, right click in the Toolbar and select Icon and Text.

Figure 2.6

Figure 2.6 Xcode prog1 project window

Now it’s time to type in your first program. Select the file main.m in the left pane. (You might have to reveal the files under the project name by clicking the disclosure triangle.) Your Xcode window should now look like Figure 2.7.

Figure 2.7

Figure 2.7 File main.m and the edit window

Objective-C source files use .m as the last two characters of the filename (known as its extension). Table 2.1 lists other commonly used filename extensions.

Table 2.1 Common Filename Extensions

Extension

Meaning

.c

C language source file

.cc, .cpp

C++ language source file

.h

Header file

.m

Objective-C source file

.mm

Objective-C++ source file

.pl

Perl source file

.o

Object (compiled) file

The right pane of your Xcode project window shows the contents of the file called main.m, which was automatically created for you as a template file by Xcode and which contains the following lines:

//
//  main.m
//  prog1
//
//  Created by Steve Kochan on 10/16/13.
//  Copyright (c) 2013 ClassroomM. All rights reserved.
//
#import <Foundation/Foundation.h>

int main (int argc, const char * argv[])
{
   @autoreleasepool {

      // insert code here...
      NSLog (@"Hello World!");
   }
   return 0;
}

You can edit your file inside this window. Make changes to the program shown in the edit window to match Program 2.1. The lines that start with two slash characters (//) are called comments; we talk more about comments shortly.

Your program in the edit window should now look like this. (Don’t worry if your comments don’t match.)

Program 2.1

// First program example

#import <Foundation/Foundation.h>

int main (int argc, const char * argv[])
{
   @autoreleasepool {
      NSLog (@"Programming is fun!");
   }
   return 0;
}

Now it’s time to compile and run your first program; in Xcode terminology, it’s called building and running. Before doing that, we need to reveal a pane that will display the results (output) from our program. You can do this most easily by selecting the middle icon in the “View” (rightmost) category on the toolbar. When you hover over this icon, it says Hide or Show the Debug Area. Your window should now look like Figure 2.8. Note that Xcode normally reveals the debug area automatically whenever any data is written to it.

Figure 2.8

Figure 2.8 Xcode debug area revealed

Now, if you click the “Play” button located at the top left of the toolbar or select Run from the Product menu, Xcode goes through the two-step process of first building and then running your program. The latter occurs only if no errors are discovered in your program.

If you do make mistakes in your program, along the way you’ll see errors denoted as red stop signs containing exclamation points; these are known as fatal errors, and you can’t run your program without correcting these. Warnings are depicted by yellow triangles containing exclamation points. You can still run your program with them, but in general you should examine and correct them. After you run the program with all the errors removed, the lower-right pane displays the output from your program and should look similar to Figure 2.9.

Figure 2.9

Figure 2.9 Xcode debug output

You’re now done with the procedural part of compiling and running your first program with Xcode (whew!). The following summarizes the steps involved in creating a new program with Xcode:

  1. Start the Xcode application.
  2. If this is a new project, select File, New, Project... or choose Create a New Xcode Project from the startup screen.
  3. For the type of application, select Application, Command Line Tool, and click Next.
  4. Select a name for your application and set its Type to Foundation. Fill in the other fields that appear on the sheet. Click Next.
  5. Select a name for your project folder and a directory to store your project files in. Click Create.
  6. In the left pane, you will see the file main.m. (You might need to reveal it from inside the folder that has the product’s name.) Highlight that file. Type your program into the edit window that appears in the rightmost pane.
  7. On the toolbar, select the middle icon in the upper-right corner to reveal the debug area. That’s where you’ll see your output.
  8. Build and run your application by clicking the Play button on the toolbar or selecting Run from the Product menu.

  9. If you get any compiler errors or the output is not what you expected, make your changes to the program and rerun it.

Using Terminal

Some people might want to avoid having to learn Xcode to get started programming with Objective-C. If you’re used to using the UNIX shell and command-line tools, you might want to edit, compile, and run your programs using the Terminal application. Here, we examine how to go about doing that.

Before attempting to compile you program from the command line, make sure that you have Xcode’s Command Line Tools installed on your system. Go to Xcode, Preferences, Downloads, Components from inside Xcode. You’ll see something similar to Figure 2.10. This figure indicates that the Command Line Tools have not been installed on this system. If they haven’t, an Install button will be shown, which you can click to install the tools.

Figure 2.10

Figure 2.10 Installing the Command Line Tools

Once the Command Line Tools have been installed, the next step is to start the Terminal application on your Mac. The Terminal application is located in the Applications folder, stored under Utilities. Figure 2.11 shows its icon.

Figure 2.11

Figure 2.11 Terminal program icon

Start the Terminal application. You’ll see a window that looks like Figure 2.12.

Figure 2.12

Figure 2.12 Terminal window

You type commands after the $ (or %, depending on how your Terminal application is configured) on each line. If you’re familiar with using UNIX, you’ll find this straightforward.

First, you need to enter the lines from Program 2.1 into a file. You can begin by creating a directory in which to store your program examples. Then, you must run a text editor, such as vi or emacs, to enter your program:

sh-2.05a$ mkdir Progs   Create a directory to store programs in
sh-2.05a$ cd Progs      Change to the new directory
sh-2.05a$ vi main.m     Start up a text editor to enter program
 --

For Objective-C files, you can choose any name you want; just make sure that the last two characters are .m. This indicates to the compiler that you have an Objective-C program.

After you’ve entered your program into a file (and we’re not showing the edit commands to enter and save your text here) and have verified that you have the right tools installed, you can use the LLVM Clang Objective-C compiler, which is called clang, to compile and link your program. This is the general format of the clang command:

clang -fobjc-arc files -o program

files is the list of files to be compiled. In this example, we have only one such file, and we’re calling it main.m. program is the name of the file that will contain the executable if the program compiles without any errors.

We’ll call the program prog1; here, then, is the command line to compile your first Objective-C program:

$ clang -fobjc-arc main.m -o prog1     Compile main.m & call it prog1
$

The return of the command prompt without any messages means that no errors were found in the program. Now you can subsequently execute the program by typing the name prog1 at the command prompt:

$ prog1        Execute prog1
sh: prog1: command not found
$

This is the result you’ll probably get unless you’ve used Terminal before. The UNIX shell (which is the application running your program) doesn’t know where prog1 is located (we don’t go into all the details of this here), so you have two options: One is to precede the name of the program with the characters ./ so that the shell knows to look in the current directory for the program to execute. The other is to add the directory in which your programs are stored (or just simply the current directory) to the shell’s PATH variable. Let’s take the first approach here:

$ ./prog1      Execute prog1
2012-09-03 18:48:44.210 prog1[7985:10b] Programming is fun!
$

Note that writing and debugging Objective-C programs from the Terminal is a valid approach. However, it’s not a good long-term strategy. If you want to build OS X or iOS applications, there’s more to just the executable file that needs to be “packaged” into an application bundle. It’s not easy to do that from the Terminal application, and it’s one of Xcode’s specialties. Therefore, I suggest you start learning to use Xcode to develop your programs. There is a learning curve to do this, but the effort will be well worth it in the end.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020