IOS 6 screen rotation without using storyboard

前端 未结 3 384
灰色年华
灰色年华 2021-01-18 04:23

Anyone who\'s trying the newest iOS 6 beta(version 2 or 3) has the same experience of auto rotation not working?

I am not using storyboard but pure navigation contro

3条回答
  •  鱼传尺愫
    2021-01-18 05:10

    Autorotation is changing in iOS 6. In iOS 6, the shouldAutorotateToInterfaceOrientation: method of UIViewController is deprecated. In its place, you should use the supportedInterfaceOrientations and shouldAutorotate methods.

    Read more here.

提交回复
热议问题