UIStoryboardエディタにウィンドウ設定がないようなので、AppDelegateのウィンドウクラスをUIWindowからそのサブクラスに切り替える方法を知りたいです。
私がよく行うのは、application:didFinishLaunchingWithOptions: に次のコードを記述することですが、そのたびに本当に退屈になります。
UIViewController* vc = self.window.rootViewController;
self.window = [[MyWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.rootViewController = vc;
何か案は?