您的位置:首页 > 移动开发 > IOS开发

xcode5 设置横屏 兼容ios5

2013-12-06 14:57 218 查看
重载shouldAutorotateToInterfaceOrientation:方法,这种方式是可行的。具体如下:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

{

// Return YES for supported orientations

return ((interfaceOrientation ==UIDeviceOrientationLandscapeLeft)||(interfaceOrientation ==UIDeviceOrientationLandscapeRight));

}

如果有全局设置的方法,谢谢留言
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: