Directory of this document
- I. Open Xcode and create a new Xcode project
- Two. Select the simplest command line item
- Three. Enter the project name and select the foundation framework to create the project
- Four, click Run, running the project
Description: This objective-c topic is a prelude to learning iOS development, and to enable programmers with experience in object-oriented language development to quickly get started with objective-c. If you do not have programming experience, or are not interested in objective-c, iOS development, please ignore. Before studying this topic, it is recommended to study the C language topic first.
Back to top one. Open Xcode and create a new Xcode project
Back to top two. Select the simplest command line item
Since we are only learning OC syntax and have not formally entered iOS development, select command line items to
Back to top three. Enter the project name, select the foundation framework to create the project
* Type A must select the foundation framework, because the common classes of OC are included in this frame
* The bottom "use Automatic ..." is not checked at the moment, which is related to memory management. Talk about memory management.
Go back to the top four, click Run, running the project
* C language source file extension named ". C", OC Source file extension named ". M"
* MAIN.M file is the only source file in our program
* The compiler compiles the. m file into an. o target file, such as MAIN.M will become a MAIN.O file after successful compilation
* The result of operation is:
2013-04-06 15:35:32.583 First OC program [429:303] Hello, world!
The first OC program is running successfully!
"Objective-c" 03-First OC Program