In the old days before storyboards I was able to create my own UIWindow instance in -application:didFinishLaunchingWithOptions:
.
I have a UIWindow subclass with special needs which I want to use with a new Xcode project. But my app delegate method is empty and still there is magically a UIWindow.
There is a Main.storyboard file. But looking inside it I only see a UIViewController. No reference to a UIWindow.
main.m also has no mention of a UIWindow.
Who creates the UIWindow and how can I force it to instantiate my subclass instead?