首页 > 移动平台 > 详细

iOS个别界面旋转问题

时间:2015-11-30 23:51:29      阅读:315      评论:0      收藏:0      [点我收藏+]

/*是否应该自动旋转屏幕**/

- (BOOL)shouldAutorotate{

    return YES;

}

 /*是否支持屏幕旋转并指明旋转方向**/

- (UIInterfaceOrientationMask)supportedInterfaceOrientations{

    return UIInterfaceOrientationMaskLandscapeLeft;

}

/*相当于执行屏幕旋转**/ 

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation{

    return UIInterfaceOrientationLandscapeLeft;

    

}

 

iOS个别界面旋转问题

原文:http://www.cnblogs.com/tingxins/p/5008802.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!