shouldAutorotateToInterfaceOrientation和图像旋转

时间:2010-12-07 19:58:57

标签: ios ios4

我的应用有一个图像作为背景,如果我旋转设备,所有小部件和旋转,但不是背景图像。

shouldAutorotateToInterfaceOrientation的实施很简单:

// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}

任何提示?

此致 的Sascha

1 个答案:

答案 0 :(得分:0)

如果要自动缩放,则应将图像放在UIImageView中。但我建议在两个不同的方向上正确调整两张图片,并在代码中切换它们。