#define IOS7 [[[UIDevice currentDevice]systemVersion] floatValue] >= 7.0
if (IOS7)
{
self.edgesForExtendedLayout = UIRectEdgeNone; //视图控制器,四条边不指定
self.extendedLayoutIncludesOpaqueBars =NO; //不透明的操作栏<br> self.modalPresentationCapturesStatusBarAppearance = NO;
}
本文介绍了在iOS7中如何通过调整UIViewController的属性来实现更好的界面适配效果,特别是针对UIScrollView及其子类的使用,避免自动留白的问题。
4307

被折叠的 条评论
为什么被折叠?



