IOS某个ViewController禁止自动旋转

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

IOS某个ViewController禁止自动旋转
- (BOOL)shouldAutorotate
{
    return YES;
}

- (NSUInteger)supportedInterfaceOrientations
{
    return (UIInterfaceOrientationMaskAll);// 修改这里 控制显示方向
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
IOS某个ViewController禁止自动旋转

IOS某个ViewController禁止自动旋转,布布扣,bubuko.com

IOS某个ViewController禁止自动旋转

上一篇:libxml移植到android


下一篇:做应用开发的如何查看Android源码