仅适用于多个ViewController应用程序中的SingleViewController的iOS 6自动旋转

时间:2012-11-22 06:34:02

标签: iphone xcode ios6

有没有办法为SingleViewController提供自动旋转功能,因为我们的iPhone应用程序中有多个ViewControllers,需要只为One进行自动旋转。

1 个答案:

答案 0 :(得分:2)

是的,你可以用你的VC(不是旋转)

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

    {
        //return (interfaceOrientation == UIInterfaceOrientationPortrait);
        return NO;
    }
// New Autorotation support for iOS 6.
- (BOOL)shouldAutorotate NS_AVAILABLE_IOS(6_0);
{
     Return NO;
    }

另见Apple Doc 这将有所帮助。