如题
[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeRight]; 旋转状态栏的方法在ios 9.0 过期了。
http://blog.csdn.net/ginhoor/article/details/20454229 在这边找到了旋转的答案,但是还是想知道ios9的状态栏旋转方法。。。。
伊谢尔伦2017-04-17 17:47:50
상태 표시줄을 따로 회전할 필요가 없다는 뜻입니다. 가로 화면이나 세로 화면인 경우 가로 화면이 필요한 컨트롤러에만 이 메서드를 추가하면 됩니다.
(UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
return UIInterfaceOrientationLandscapeLeft;//왼쪽으로 가로로 스크롤
}