我的應用程序使用2個UIWindows。 第一個示出具有帶有ViewControllers僅旋轉到肖像取向一個的TabBar控制器。到此爲止,一切都很好。多個Windows輪換問題 - iPhone/iPad的
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (UIInterfaceOrientationIsPortrait(interfaceOrientation));
}
在另一個窗口,我有一個UIViewController旋轉到所有的方向。
的問題是,當我告訴第二個窗口
[secondWindow makeKeyAndVisible];
,然後返回到第一個
[firstWindow makeKeyAndVisible];
狀態欄旋轉到各個方向的活動shouldAutorotateToInterfaceOrientation不會觸發。我如何解決這個問題?