2016-06-07 27 views

回答

0

您可以實現這兩種方法將狀態欄方向更改爲縱向。

-(BOOL)shouldAutorotate 
{ 
    return YES; 
} 

-(UIInterfaceOrientationMask)supportedInterfaceOrientations{ 

    return UIInterfaceOrientationMaskPortrait; 
}