October 2013
Beginner
422 pages
12h 35m
English
Apple has provided a vast toolbox for programming iOS to make an app come to life and behave the way you want it to. That toolbox is the API (application programming interface). To use the API, you must speak the API’s language. That language, for the most part, is Objective-C, which itself is built on top of C; some pieces of the API use C itself. This part of the book instructs you in the basics of these languages:
self and super, key–value coding, and properties.
We’ll return in Part III to a description of further aspects of the Objective-C language — those that are particularly ...