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

屏幕旋转的处理方法,实现视图位置的变化

时间:2016-02-05 18:58:40      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

1.首先在自定义的视图中重写layoutSubviews方法

- (void)layoutSubviews{

  UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation ;//获取屏幕的方向,和状态栏是相同的

if (orientation  == UIInterfaceOrientationLandscapeLeft || orientation == UIInterfaceOrientationLandscapeRight) {//横向时的位置

self.button.frame = CGRectMake (300,150,200,40);

} else {

  self.button.frame = CGRectMake(150,150,100,40);

  }

}

2.在viewController.m文件中

- (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<

UIViewControllerTransitionCoordinator

>)coordinator{

  [self.textField resignFirstResponder];//当屏幕尺寸改变时回收键盘

}

//设置屏幕当前方向

- (NSUInteger)supportedInterfaceOrientation{

  return UIInterfaceOrientationMaskAll;

}

 

屏幕旋转的处理方法,实现视图位置的变化

标签:

原文地址:http://www.cnblogs.com/arenouba/p/5183299.html

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