Is there a documented way to set the iPhone orientation?

后端 未结 17 1068
清歌不尽
清歌不尽 2020-11-22 11:09

I have an app where I would like to support device rotation in certain views but other don\'t particularly make sense in Landscape mode, so as I swapping the views out I wou

17条回答
  •  逝去的感伤
    2020-11-22 11:50

    This is what I use. (You get some compile warnings but it works in both the Simulator and the iPhone)

    [[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeRight];
    [[UIDevice currentDevice] setOrientation:UIInterfaceOrientationLandscapeRight];
    

提交回复
热议问题