全局搜索
supportedInterfaceOrientations方法
然后替换成
// For ios6, use supportedInterfaceOrientations & shouldAutorotate instead
- (NSUInteger) supportedInterfaceOrientations{
#ifdef __IPHONE_6_0
//return UIInterfaceOrientationMaskLandscape;
return UIInterfaceOrientationMaskAllButUpsideDown;
#endif
}
本文详细介绍了如何在iOS应用程序中替换supportedInterfaceOrientations方法,并提供了针对iOS 6的实现方式。
2141

被折叠的 条评论
为什么被折叠?



