0
什麼是正確的方式來實現類似於iPhone的標準iPod應用程序中的效果 - 當設備旋轉到橫向模式時,視圖改變爲覆蓋流程,但是過渡類型是淡入淡出而不是旋轉屏幕?IOS旋轉設備不旋轉動畫
這是怎麼了加載模式的看法:
- (void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
if (UIInterfaceOrientationIsLandscape(toInterfaceOrientation)) {
carouselView.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentModalViewController:carouselView animated:YES];
}
}
謝謝!
安德
presentModalViewController已被棄用。 –