私のデバイスには、デバイスを回転させると、すべてのウィジェットと回転はありますが、背景の画像はありません。 shouldAutorotateToInterfaceOrientation
のshouldAutorotateToInterfaceOrientationと画像の回転
私の実装は単純です:
// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}
任意のヒント?
よろしく、 サシャ
Damned!つまり、背景画像は回転しますが、縮尺は変わりません。 – Sascha