码迷,mamicode.com
首页 > 其他好文 > 详细

横竖屏事件响应(viewWillLayoutSubviews和通知)两种方式

时间:2015-01-09 10:42:07      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:

转载:http://blog.csdn.net/nogodoss/article/details/17246489

最近搞横竖屏,获得一些心得,特记录下来。

做横竖屏最重要的是确定横竖屏响应的接口。目前我知道的有两种方式 :

1.使用通知。

    

- (void)viewDidLoad

      [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_orientationDidChange:)name:UIDeviceOrientationDidChangeNotification object:nil];

}

 

- (void)dealloc {

 

    [[NSNotificationCenter defaultCenter] removeObserver:self name:UIDeviceOrientationDidChangeNotificationobject:nil];

}

 

-(void)_orientationDidChange:(NSNotification*)notify

{

    [self _shouldRotateToOrientation:(UIDeviceOrientation)[UIApplication sharedApplication].statusBarOrientation];

}

-(void)_shouldRotateToOrientation:(UIDeviceOrientation)orientation {

 

if (orientation == UIDeviceOrientationPortrait ||orientation == UIDeviceOrientationPortraitUpsideDown) {

          // 竖屏

}

else {

         // 横屏

}

}

上述代码,一看就明白。

2.使用  viewWillLayoutSubviews

  测试发现横竖屏切换的时候,系统会响应一些函数,其中 viewWillLayoutSubviews就是之一。

 

- (void)viewWillLayoutSubviews

{

     [self _shouldRotateToOrientation:(UIDeviceOrientation)[UIApplication sharedApplication].statusBarOrientation];

}

通过上述一个函数就知道横竖屏切换的接口了。

注意:

viewWillLayoutSubviews只能用在ViewController里面,在view里面没有响应。

横竖屏事件响应(viewWillLayoutSubviews和通知)两种方式

标签:

原文地址:http://www.cnblogs.com/niit-soft-518/p/4212632.html

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