我有set InitViewController
作爲初始視圖控制器在storyboard
。我想用下面的公式來獲取根視圖控制器:iOS 7:獲取準確類型的rootViewController
UIViewController *initViewController = [UIApplication sharedApplication].keyWindow.rootViewController;
有時initViewController的類型是InitViewController的,有時它是 _UIModalItemAppViewController
。我無法弄清楚爲什麼initViewController類型更改爲_UIModalItemAppViewController
。我想initViewController
總是InitViewController
類型。請幫忙。
您是否呈現警報視圖或操作表? – bgfriend0
是的。我在應用程序發佈期間提供了一個警報視圖。同時我想獲得initViewController –