IOS某个ViewController禁止自动旋转

IOS屏幕自动旋转,强制横竖屏方法:

- (BOOL)shouldAutorotate
{
    return YES;
}

- (NSUInteger)supportedInterfaceOrientations
{
    return (UIInterfaceOrientationMaskAll);
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

要注意的地方:

如果在subViewController中复写rotate相关的方法是不会起作用的。

posted @ 2014-04-24 16:10  wsjisji  阅读(5510)  评论(0编辑  收藏  举报