Difference between revisions of "IPhone App Development Essentials"

From Techotopia
Jump to: navigation, search
Line 60: Line 60:
 
#* [[The Basics of Objective-C Programming|Objective-C do ... while loops]]<br><br>
 
#* [[The Basics of Objective-C Programming|Objective-C do ... while loops]]<br><br>
 
# [[The Basics of Object Oriented Programming in Objective-C]]
 
# [[The Basics of Object Oriented Programming in Objective-C]]
 +
#* [[The Basics of Object Oriented Programming in Objective-C|What is an Object?]]
 +
#* [[The Basics of Object Oriented Programming in Objective-C|What is a Class?]]
 +
#* [[The Basics of Object Oriented Programming in Objective-C|Declaring an Objective-C Class Interface]]
 +
#* [[The Basics of Object Oriented Programming in Objective-C|Adding Instance Variables to a Class]]
 +
#* [[The Basics of Object Oriented Programming in Objective-C|Define Class Methods]]
 +
#* [[The Basics of Object Oriented Programming in Objective-C|Declaring an Objective-C Class Implementation]]
 +
#* [[The Basics of Object Oriented Programming in Objective-C|Declaring, Initializing and Releasing a Class Instance]]
 +
#* [[The Basics of Object Oriented Programming in Objective-C|Calling Methods and Accessing Instance Data]]
 +
#* [[The Basics of Object Oriented Programming in Objective-C|Creating the Program Section]]
 +
#* [[The Basics of Object Oriented Programming in Objective-C|Bringing it all Together]]
 +
#* [[The Basics of Object Oriented Programming in Objective-C|Structuring Object-Oriented Objective-C Code]]<br><br>

Revision as of 16:44, 5 March 2010

Currently under development, this online book is intended to teach the reader everything necessary to develop apps for the iPhone. It is due for completion in May 2010 so check back for regular updates.

  1. About iPhone App Development Essentials

  2. The Anatomy of an iPhone
  3. The iPhone OS Architecture and Frameworks
  4. The iPhone OS Cocoa Touch Layer
  5. The iPhone OS Media Layer
  6. The iPhone OS Core Services Layer
  7. The iPhone OS Core OS Layer
  8. Installing Xcode and the iPhone SDK
  9. Creating a Simple iPhone App

  10. The Basics of Objective-C Programming
  11. The Basics of Object Oriented Programming in Objective-C