IOS异常问题

[[UIApplication sharedApplicatio

2017-07-26  本文已影响0人  零点知晨

项目中需要实现单个界面的横屏,通过tranform来旋转屏幕的时候,需要同时旋转一下状态栏。但是直接设置setStatusBarOrientation这个是无效的。

- (BOOL)shouldAutorotate {
    return [[self.viewControllers lastObject] shouldAutorotate];
}


- (UIInterfaceOrientationMask)supportedInterfaceOrientations {
    return [[self.viewControllers lastObject] supportedInterfaceOrientations];
}


- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
    return [[self.viewControllers lastObject] preferredInterfaceOrientationForPresentation];
}

简单记录一下问题。具体可以参考http://blog.csdn.net/ginhoor/article/details/20454229

上一篇 下一篇

猜你喜欢

热点阅读