内容简介:以前的 iOS 程式 (4.0 版以前) 都是用 addSubview 来将 app 的 root view 加到 window 上面,例如下面的作法:我发现在 iOS 6 上面,这个作法会使 rotation 失效 (iOS 6 以前完全没问题),必须改成这个方式:iOS 4 之后才支持self.window.rootViewController = self.viewController;的方式。
以前的 iOS 程式 (4.0 版以前) 都是用 addSubview 来将 app 的 root view 加到 window 上面,例如下面的作法:
[self.window addSubview:self.viewController.view];
我发现在 iOS 6 上面,这个作法会使 rotation 失效 (iOS 6 以前完全没问题),必须改成这个方式:
if([[[UIDevice currentDevice] systemVersion] floatValue] >= 4.0) { self.window.rootViewController = self.viewController; } else { [self.window addSubview:self.viewController.view]; }
iOS 4 之后才支持self.window.rootViewController = self.viewController;的方式。
另外,相关的ViewController中,如果支持转屏需要添加如下CODE:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { return (interfaceOrientation != UIDeviceOrientationPortraitUpsideDown); } - (BOOL)shouldAutorotate { return YES; }
说明:如果你想禁止转屏,可以返回NO
- (NSUInteger)supportedInterfaceOrientations { return UIInterfaceOrientationMaskAllButUpsideDown; }
如果VIEW需要处理转屏,需要添加如下代码处理:
self.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
view会自动调整宽和高
要么重写view的 - (void) layoutSubviews
方法,调整view,添加对应的处理。推荐前者方法,后者方法除非在转屏时会修改重新调整某些UI的精确位置时使用
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- 自然语言处理之数据预处理
- Python数据处理(二):处理 Excel 数据
- 什么是自然语处理,自然语言处理主要有什么
- 集群故障处理之处理思路以及健康状态检查(三十二)
- Spark 持续流处理和微批处理的对比
- Android(Java)日期和时间处理完全解析——使用Gson和Joda-Time优雅地处理日常开发中关于时间处理的...
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Network Algorithmics,
George Varghese / Morgan Kaufmann / 2004-12-29 / USD 75.95
In designing a network device, you make dozens of decisions that affect the speed with which it will perform - sometimes for better, but sometimes for worse. "Network Algorithmics" provides a complete......一起来看看 《Network Algorithmics,》 这本书的介绍吧!