码迷,mamicode.com
首页 > 移动开发 > 详细

蓝懿 iOS IOS开发自动旋转控制代码

时间:2015-12-19 13:48:35      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

因为旋转会使得界面变得不和谐,除非你已经开发了专门针对各种方向的界面,所以有时候还是禁用旋转比较好,或者程序中的某个界面是横屏的,退出这个横屏视图之后界面又变成竖屏的,比如看视频或者浏览网页的时候你希望是横屏的,但是其他的工作你希望是竖屏的。OK,这一切都不是问题。我们可以通过代码来控制我们程序中每个界面的旋转功能。

  在你想要设置的视图控制器里找到 shouldAutorotateToInterfaceOrientation: 方法,重写它的实现代码:
 

  1.  [java]
  2.   - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{
  3.   return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
  4.   }
复制代码


  系统通过调用此方法询问试图控制是否旋转到指定方向。系统共定义了4种方向,分别对应4种常见握持方式:
 

  1.  [java]
  2.   typedef enum {
  3.   UIInterfaceOrientationPortrait = UIDeviceOrientationPortrait,
  4.   UIInterfaceOrientationPortraitUpsideDown = UIDeviceOrientationPortraitUpsideDown,
  5.   UIInterfaceOrientationLandscapeLeft = UIDeviceOrientationLandscapeRight,
  6.   UIInterfaceOrientationLandscapeRight = UIDeviceOrientationLandscapeLeft
  7.   } UIInterfaceOrientation;
复制代码


  如果想要对任何情况都支持旋转只要返回YES即可,如果只想部分支持就对支持的返回YES 不支持的返回NO。

蓝懿 iOS IOS开发自动旋转控制代码

标签:

原文地址:http://www.cnblogs.com/lovemyios/p/5059010.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!