7

縦向きのみをサポートするViewcontrollerの1つ。私のデバイスでは、回転するとステータスバーが横向きに回転します。ビューの残りの部分はポートレート モードのままです。ステータスバーの回転を防ぎたい。この問題は IOS7 でのみ発生しています

// Overridden function to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{
    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
    {
        // iPhone: support only upright portrait
        return (interfaceOrientation == UIInterfaceOrientationPortrait);
    }
    else 
    {
           // iPad: any orientation is OK
            return YES;
     }
}

// For iOS6.0 Rotate
- (BOOL)shouldAutorotate
{
    return NO;
}
4

1 に答える 1

0

この方法を使用して、縦表示に保ちます。

[UIApplication sharedApplication].statusBarOrientation = UIInterfaceOrientationPortrait;
于 2015-04-08T07:22:12.597 に答える