I'd like to do away with XIB (Nib) files in my project, because that's just how I roll. However I'm finding that my AppDelegate class's method didFinishLaunchingWithOptions is never even called.
I tried setting the principal class in my app's main plist like so:
<key>NSPrincipalClass</key>
<string>AppDelegate</string>
This only leads to an error:
+[AppDelegate registerForSystemEvents]: unrecognized selector sent to class
So... how can I do without the principal class and just have my AppDelegate class run?
Thanks.