0

我创建了一个仅纵向的 iphone 应用程序,即使我在旋转设备时也制作了一个支持横向方向的视图 在 iOS6 中一切正常,但是当我在 iOS5 上运行它时,横向模式不正确,它显示了一些讨厌的图像。(这两款设备都是 ipod 3.5" 视网膜显示屏)

为什么会这样??

在此处添加我的代码和屏幕截图

在 iOS6 第一视角 旋转设备后 在 iOS 5

第一视角 旋转设备后 -(void)viewDidLoad { [超级 viewDidLoad];

[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
[[NSNotificationCenter defaultCenter] addObserver:self
                                         selector:@selector(didRotate:)
                                               name:UIDeviceOrientationDidChangeNotification
                                           object:nil];


}



- (void)didRotate:(NSNotification *)notification {
UIDeviceOrientation orientation = [[notification object] orientation];

if (orientation == UIDeviceOrientationLandscapeLeft) {
    [self.grpView setTransform:CGAffineTransformMakeRotation(M_PI / 2.0)];
   imageScrollView.frame =CGRectMake(-50, -100, 400, 620);



} else if (orientation == UIDeviceOrientationLandscapeRight) {
    [self.grpView setTransform:CGAffineTransformMakeRotation(M_PI / -2.0)];
} else if (orientation == UIDeviceOrientationPortraitUpsideDown) {
    [self.grpView setTransform:CGAffineTransformMakeRotation(M_PI)];
} else if (orientation == UIDeviceOrientationPortrait) {
    [self.grpView setTransform:CGAffineTransformMakeRotation(0.0)];

}
}
4

1 回答 1

1

InterfaceOrientation 方法在 ios6 中已弃用。因此,如果您希望 ios5 和 ios6 都支持您的方向,则必须为 ios6 编写两个额外的方法以及

    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// your customisation will go here
}

ios6的两个额外方法

    - (BOOL)shouldAutorotate
    {
        return YES;
    }

    - (NSUInteger)supportedInterfaceOrientations
       {
   // your customisation will go here
       }

享受编程!

于 2012-12-27T12:30:41.647 回答