3

常に縦長モードになっているメインのviewControllerがあります。

次に、ModalViewController を提示したいのですが、横向きでは (画面の下からではなく) 左から来ます。

出来ますか?

tnx

4

2 に答える 2

2

モーダル ビュー コントローラーの実装で、オーバーライド-shouldAutorotateToInterfaceOrientation:

- (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
于 2009-12-15T09:51:20.673 に答える
1

私もこの問題に遭遇しました。だから私はモーダルトランジションスタイルを使用したので、それは気まぐれに見えませんでした。

お役に立てれば。

viewController.modalTransitionStyle = *modaltransitionstyle*;

[self presentModalViewController:viewController animated:YES];
于 2010-05-26T22:18:01.313 に答える