Difference between revisions of "IPhone App Development Essentials"
From Techotopia
Line 123: | Line 123: | ||
#* [[iPhone Rotation, View Resizing and Layout Handling|Coding Layout and Size Changes]]<br><br> | #* [[iPhone Rotation, View Resizing and Layout Handling|Coding Layout and Size Changes]]<br><br> | ||
# [[Creating an iPhone Multiview Application using the Tab Bar]] | # [[Creating an iPhone Multiview Application using the Tab Bar]] | ||
+ | #* [[Creating an iPhone Multiview Application using the Tab Bar|An Overview of the Tab Bar]] | ||
+ | #* [[Creating an iPhone Multiview Application using the Tab Bar|Understanding View Controllers in a Multiview Application]] | ||
+ | #* [[Creating an iPhone Multiview Application using the Tab Bar|Setting up the Tab Bar Example Application]] | ||
+ | #* [[Creating an iPhone Multiview Application using the Tab Bar|Creating the Content Views and View Controllers]] | ||
+ | #* [[Creating an iPhone Multiview Application using the Tab Bar|Configuring the App Delegate]] | ||
+ | #* [[Creating an iPhone Multiview Application using the Tab Bar|Creating the UITabBarController]] | ||
+ | #* [[Creating an iPhone Multiview Application using the Tab Bar|Associating Content Views with Tabs]] | ||
+ | #* [[Creating an iPhone Multiview Application using the Tab Bar|Connecting the App Delegate Outlet to the Tab Bar Controller]] | ||
+ | #* [[Creating an iPhone Multiview Application using the Tab Bar|Designing the Content Views]] | ||
+ | #* [[Creating an iPhone Multiview Application using the Tab Bar|Testing the Multiview Application]]<br><br> |
Revision as of 20:08, 16 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.
- About iPhone App Development Essentials
- The Anatomy of an iPhone
- The iPhone OS Architecture and Frameworks
- The iPhone OS Cocoa Touch Layer
- The iPhone OS Media Layer
- Core Graphics Framework (CoreGraphics.framework)
- Quartz Core Framework (QuartzCore.framework)
- OpenGL ES framework (OpenGLES.framework)
- iPhone Audio Support
- AV Foundation framework (AVFoundation.framework)
- Core Audio Frameworks (CoreAudio.framework, AudioToolbox.framework and AudioUnit.framework)
- Open Audio Library (OpenAL)
- Media Player framework (MediaPlayer.framework)
- The iPhone OS Core Services Layer
- The iPhone OS Core OS Layer
- Installing Xcode and the iPhone SDK
- Creating a Simple iPhone App
- Testing Apps on the iPhone – Developer Certificates and Provisioning Profiles
- Joining the iPhone Developer Program
- Creating an iPhone Development Certificate Signing Request
- Submitting the iPhone Development Certificate Signing Request
- Installing an iPhone Development Certificate
- Assigning Devices
- Creating an App ID
- Creating an iPhone Development Provisioning Profile
- Selecting a Device for Development
- Associating an App ID with an App
- Installing an App onto a Device
- The Basics of Objective-C Programming
- The Basics of Object Oriented Programming in Objective-C
- What is an Object?
- What is a Class?
- Declaring an Objective-C Class Interface
- Adding Instance Variables to a Class
- Define Class Methods
- Declaring an Objective-C Class Implementation
- Declaring, Initializing and Releasing a Class Instance
- Calling Methods and Accessing Instance Data
- Creating the Program Section
- Bringing it all Together
- Structuring Object-Oriented Objective-C Code
- An Overview of the iPhone Application Development Architecture
- Creating an Interactive iPhone App
- Understanding iPhone Views, Windows and the View Hierarchy
- Writing Code to Hide the iPhone Keyboard
- iPhone Rotation, View Resizing and Layout Handling
- Creating an iPhone Multiview Application using the Tab Bar
- An Overview of the Tab Bar
- Understanding View Controllers in a Multiview Application
- Setting up the Tab Bar Example Application
- Creating the Content Views and View Controllers
- Configuring the App Delegate
- Creating the UITabBarController
- Associating Content Views with Tabs
- Connecting the App Delegate Outlet to the Tab Bar Controller
- Designing the Content Views
- Testing the Multiview Application