Assume a default Xcode Cocoa app template where the App Delegate is in the main XIB file.
Of course, applicationWillFinishLaunching: is called before applicationDidFinishLaunching:.
Why is awakeFromNib being called before applicationWillFinishLaunching:?
The docs for applicationWillFinishLaunching: say this:
Sent by the default notification center immediately before the application object is initialized.
Why does this not contradict awakeFromNib being called before applicationWillFinishLaunching:?
Can I rely on this order?