0
我設置我的UIViewController在應用程序委託self.window.rootViewController。出於某種原因,我需要開放的標誌視圖模式從像我的根視圖控制器:UIViewController自動旋轉?
self.window.rootViewController.modalPresentationStyle = UIModalPresentationCurrentContext;
[self.window.rootViewController presentModalViewController:signViewC animated:NO];
如果我更改註冊查看設備的方向,我的根視圖控制器不會改變的方向和我籤視圖後得到不正確的方向駁回。如果我在標誌視圖中更改方向,是否可以更改根視圖方向?
在我的根控制器我說:如果我不旋轉模式的看法根視圖
- (BOOL)shouldAutorotateToInterfaceOrientation: (UIInterfaceOrientation)interfaceOrientation
{
return YES;
}
和自轉的作品。
是的,它有執行 –
你在哪裏調用這些行? –
你是什麼意思?它在執行.m文件中。它是默認生成的。或者我需要做點別的? –