Documentation Archive Developer
Search

Basic Tasks

Now that you’ve learned enough about Objective-C to read and write basic code, you can begin to think in terms of objects. Just as you would think about objects in the real world, you need to think about what an object contains, what you can do with it, and how it relates to other objects.

image: ../Art/basic_tasks_2x.png

To create an iOS app, you need to know how to create objects, compare objects, query objects for information about them, and access objects in collections such as arrays. These tasks are common in iOS apps. After you acquire these skills, you are ready to take on more complicated Objective-C code.

Read This Article Now