iOS - Hello World
These notes were adapted from http://codewithchris.com/how-to-make-an-iphone-app/Objective #1: Use the Xcode IDE v 4.6.3
Objective #2: Create an iOS Hello World app.
Objective #3: Add components to a view.
#import <UIKit/UIKit.h> @interface ViewController : UIViewController @property (strong, nonatomic) IBOutlet UILabel *helloLabel; @property (strong, nonatomic) IBOutlet UIButton *clickyButton; @property (strong, nonatomic) IBOutlet UITextField *customTextField; @end
Objective #4: Handle user interaction with buttons and text fields.
Objective #5: Explain the Model-View-Controller approach and the relationship between the View and the Controller.
Objective #6: Use Storyboards.