|
|
|
|
|
by dissenter
6480 days ago
|
|
Sure. Here's the execution tree necessary to "Hello World" in Cocoa---at least as given in the Apple tutorial I followed. It's possible to cut it down, but only after you've digested all of the material Apple lays in front of you. main()
|
-> UIApplicationMain()
|
-> Info.plist (Never referenced by name!)
|
-> MainWindow.xib (Interface Builder. Contains no code!)
|
-> HelloWorldAppDelegate .h/.m (Not clearly indicated)
|
-> didFinishLaunching()
|
-> IBOutlet UIWindow *window
|
-> *myViewController
|
-> ControllerView (IB Nib, needs dragged connection)
|
-> Etc.
|
-> HelloWorld ?
|
|