如何防止图像自转?

时间:2010-07-05 22:17:17

标签: iphone objective-c fixed autorotate image-rotation

我有一个UIImageView作为我的应用程序的背景图像,就像遇险的直升机一样,自动旋转。问题是当方向自动旋转时,我的图像会在整个地方移动而我不喜欢它。由于它是一个简单的纹理,我认为用户更愿意让它保持原位,而不是自动旋转。我的意思是我希望图像保持全屏,当用户旋转手机时,图像只是旋转了90度,因此图像看起来是静态的,而不是应用程序的其余部分。 / p>

2 个答案:

答案 0 :(得分:1)

您可以尝试在视图控制器中实现willAnimateRotationToInterfaceOrientation:duration:方法,然后向相反方向旋转UIImageView

以下代码来自我的头脑,我不能保证它会起作用:

- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration {
    CGFloat angle = M_PI/2; // Figure out the proper angle
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:duration];
    imageview.transform = CGAffineTransformMakeRotation(angle);
    [UIView commitAnimations];
}

答案 1 :(得分:0)

我建议在图像编辑软件中旋转图像并动态加载。这比弄乱角度更容易做得多(而且代码也更容易阅读)。

像这样:

- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {

    if (toInterfaceOrientation == UIInterfaceOrientationPortrait || toInterfaceOrientation == UIInterfaceOrientationPortraitUpsideDown) {

        myBackground.image = [UIImage imageNamed:@"bg.jpg"];            

    } else { // landscape view      

        myBackground.image = [UIImage imageNamed:@"bg_landscape.jpg"];

    }
}