찾다

 >  Q&A  >  본문

ios - setStatusBarOrientation 方法过期了,有什么替换方法吗?

如题
[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeRight]; 旋转状态栏的方法在ios 9.0 过期了。

http://blog.csdn.net/ginhoor/article/details/20454229 在这边找到了旋转的答案,但是还是想知道ios9的状态栏旋转方法。。。。

迷茫迷茫2772일 전962

모든 응답(1)나는 대답할 것이다

  • 伊谢尔伦

    伊谢尔伦2017-04-17 17:47:50

    상태 표시줄을 따로 회전할 필요가 없다는 뜻입니다. 가로 화면이나 세로 화면인 경우 가로 화면이 필요한 컨트롤러에만 이 메서드를 추가하면 됩니다.

    • (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
      {
      return UIInterfaceOrientationLandscapeLeft;//왼쪽으로 가로로 스크롤
      }

    회신하다
    0
  • 취소회신하다