Difference between revisions of "IPhone App Development Essentials"

From Techotopia
Jump to: navigation, search
Line 134: Line 134:
 
#* [[Creating an iPhone Multiview Application using the Tab Bar|Testing the Multiview Application]]<br><br>
 
#* [[Creating an iPhone Multiview Application using the Tab Bar|Testing the Multiview Application]]<br><br>
 
# [[Creating a Navigation based iPhone Application using TableViews]]
 
# [[Creating a Navigation based iPhone Application using TableViews]]
 +
#* [[Creating a Navigation based iPhone Application using TableViews|Understanding the Navigation Controller]]
 +
#* [[Creating a Navigation based iPhone Application using TableViews|An Overview of the Example]]
 +
#* [[Creating a Navigation based iPhone Application using TableViews|Setting up the Project]]
 +
#* [[Creating a Navigation based iPhone Application using TableViews|Reviewing the Project Files]]
 +
#* [[Creating a Navigation based iPhone Application using TableViews|Setting up the Data in the Root View Controller]]
 +
#* [[Creating a Navigation based iPhone Application using TableViews|Writing Code to Display the Data in the Table View]]
 +
#* [[Creating a Navigation based iPhone Application using TableViews|Creating the Second View Controller]]
 +
#* [[Creating a Navigation based iPhone Application using TableViews|Connecting the Second View Controller to the Root View Controller]]
 +
#* [[Creating a Navigation based iPhone Application using TableViews|Creating the NIB File for the Second Table View]]
 +
#* [[Creating a Navigation based iPhone Application using TableViews|Implementing the Functionality of the Second View Controller]]
 +
#* [[Creating a Navigation based iPhone Application using TableViews|Popping the View Controller off the Navigation Controller Stack]]
 +
#* [[Creating a Navigation based iPhone Application using TableViews|Adding the Navigation Code]]<br><br>

Revision as of 15:12, 26 April 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. Testing Apps on the iPhone – Developer Certificates and Provisioning Profiles
  11. The Basics of Objective-C Programming
  12. The Basics of Object Oriented Programming in Objective-C
  13. An Overview of the iPhone Application Development Architecture
  14. Creating an Interactive iPhone App
  15. Understanding iPhone Views, Windows and the View Hierarchy
  16. Writing Code to Hide the iPhone Keyboard
  17. iPhone Rotation, View Resizing and Layout Handling
  18. Creating an iPhone Multiview Application using the Tab Bar
  19. Creating a Navigation based iPhone Application using TableViews