在我的應用程序的構建設置中,我已經檢查了所有支持的方向(除了倒置)。iOS:防止切換時查看方向?
但是,當我啓動應用程序時,某些視圖不能用縱向顯示,將自動旋轉並截斷視圖的一半。我不希望這些視圖旋轉。
我該如何預防? ive試過使用:
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
if(interfaceOrientation == UIInterfaceOrientationLandscapeLeft)
return YES;
if(interfaceOrientation == UIInterfaceOrientationLandscapeRight)
return YES;
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
但是,該設備仍然想要時,它可以變成肖像。任何幫助都會很棒。
http://stackoverflow.com/questions/2868132/shouldautorotatetointerfaceorientation-doesnt-work – prashanth