0

私のプロジェクトでは、Facebook API「three20」を使用しています:https ://github.com/facebook/three20/

自動回転を無効にするにはどうすればよいですか?画像とサムネイルは、横向きモードではなく、常に縦向きで表示する必要があります。

ありがとう!

4

1 に答える 1

1

使用するshouldAutorotateToInterfaceOrientation:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    return NO;
}
于 2011-01-24T18:18:29.573 に答える