我的应用有一个图像作为背景,如果我旋转设备,所有小部件和旋转,但不是背景图像。
我shouldAutorotateToInterfaceOrientation
的实施很简单:
// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}
任何提示?
此致 的Sascha
答案 0 :(得分:0)
如果要自动缩放,则应将图像放在UIImageView中。但我建议在两个不同的方向上正确调整两张图片,并在代码中切换它们。