0
iPhoneの標準iPodアプリケーションに似た効果を得る正しい方法は何ですか?デバイスを横向きに回転すると、ビューはフローをカバーするように変更されますが、遷移の種類は消えていて、回転する画面はありませんか?IOSが回転アニメーションなしのデバイスを回転する
- (void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
if (UIInterfaceOrientationIsLandscape(toInterfaceOrientation)) {
carouselView.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentModalViewController:carouselView animated:YES];
}
}
ありがとう:
これは、私は、モーダルビューをロードしています方法です!
Andrius
presentModalViewControllerは非推奨です。 –