标签:blog http os io ar div 代码 log
IOS屏幕自动旋转,强制横竖屏方法:
- (BOOL)shouldAutorotate
{
return YES;
}
- (NSUInteger)supportedInterfaceOrientations
{
return (UIInterfaceOrientationMaskAll);// 修改这里 控制显示方向
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
IOS某个ViewController禁止自动旋转,布布扣,bubuko.com
标签:blog http os io ar div 代码 log
原文地址:http://www.cnblogs.com/yangmx/p/3915328.html