xcode5 设置横屏 兼容ios5

来源:互联网 发布:gis数据开发工程师 编辑:程序博客网 时间:2024/05/29 09:44
重载shouldAutorotateToInterfaceOrientation:方法,这种方式是可行的。具体如下: 
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 

    // Return YES for supported orientations 
return ((interfaceOrientation ==UIDeviceOrientationLandscapeLeft)||(interfaceOrientation ==UIDeviceOrientationLandscapeRight)); 

如果有全局设置的方法,谢谢留言

原创粉丝点击