Goldstein's iPad Apps Development Book page 164
Interface Builder has been a bit of a challenge to me. I'm working to start over with it and get a better idea of how to draw the connections between the objects I put into the View window and the various Main Window interface objects.
So what is in the Main Window?
* DeepThoughts in current book tutorial
Interface Builder has been a bit of a challenge to me. I'm working to start over with it and get a better idea of how to draw the connections between the objects I put into the View window and the various Main Window interface objects.
So what is in the Main Window?
- File's Owner, A Proxy Object
- class UIApplication
- created by UIApplicationMain object before the nib file is loaded
- First Responder, Proxy Object
- First entry in application responder chain
- points to object user currently interacting with
- Window
- Instance of (DeepThoughts*)AppDelegate set to be the app delegate
- Code that restores app after launch to it's previous state
- Performs any custom application initialization
- Instance of (DeepThoughts)ViewController set to be apps view controller
- Where I put code to control the view of my apps (ch 10)
* DeepThoughts in current book tutorial
No comments:
Post a Comment