我有一个 UINavigation 基础应用程序,其中我支持某些视图控制器的所有方向,但不支持所有使用此代码的人
@interface UINavigationController(自动旋转)
(BOOL) 应该自动旋转到接口方向:(UIInterfaceOrientation) 到接口方向;@结尾
@implementation UINavigationController(自动旋转)
(BOOL)应该自动旋转到接口方向:(UI接口方向)到接口方向{
if ([self.visibleViewController isKindOfClass:[MWPhotoBrowser class]] || [self.visibleViewController isKindOfClass:[ZoomPictureViewController class]]) { return YES; } return (toInterfaceOrientation == UIInterfaceOrientationPortrait); } @结尾
它工作得很好,但不能在 IOS6 中工作。我已经设置了我的项目 plist 文件中支持的所有四个方向。
如果有人找到了一些解决方法,请提供帮助。