1

(絵コンテ使用)

ViewController サブクラスの 1 つが縦向きビュー以上のものをサポートするようにしようとしています。

追加しました

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
    return ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft) || (interfaceOrientation == UIInterfaceOrientationPortrait));
}

しかし、それは何もしないようです。私は plist でサポートされている上下を除くすべての向きを持っており、必要なビューコントローラーで縦向きのみを許可するように shouldautorotate を追加しました。

4

1 に答える 1

0

ios6で探している方法は- (NSUInteger)supportedInterfaceOrientations

これは本質的に shouldAutorotate を置き換えます。shouldAutorotate と組み合わせて使用​​します。

于 2013-02-07T22:53:32.523 に答える