8 ms·
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
by dissenter 18y 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 ?
- greyman 18y agoOk, that was easy. Now, why design patterns in general are stupid? Do you mean that all|some|few of them are stupid, or that the very idea of having design patterns is stupid?
- deleted 18y ago[deleted]