Can't auto rotate in iOS 6

后端 未结 4 1493
温柔的废话
温柔的废话 2021-01-17 06:26

In an app i\'m maintaining there\'s a rotate that should happen in portrait and portraitupsidedown mode. (all the rotation are enabled in the summary panel.)



        
4条回答
  •  臣服心动
    2021-01-17 06:51

    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation{
        return YES;
    }
    

提交回复
热议问题