ios7.0中视图控制器中视图坐标布局问题 if ([[[UIDevice currentDevice] systemVersion] floatValue]>=7.0) { self.edgesForExtendedLayout=UIRectEdgeNone;//ios 7中不调整屏幕坐标位置 }
iOS6中 self.view的坐标是从导航栏下面开始的 (0,0,320,480) IOS7中 self.view是屏幕左上角开始的 默认也是(0,0,320,480)填充整个屏幕 如果你设置为 self.edgesForExtendedLayout=UIRectEdgeNone;坐标(0,64,320,416) 64=等于状态栏+导航栏的高度。
iOS7中通过ViewController重载方法返回枚举值的方法来控制状态栏的隐藏和样式。 首先,需要在Info.plist配置文件中,增加键:UIViewControllerBasedStatusBarAppearance,并设置为YES; 然后,在UIViewController子类中实现以下两个方法: 复制代码 - (UIStatusBarStyle)preferredStatusBarStyle { return UIStatusBarStyleLightContent;//设置状态栏的颜色 } - (BOOL)prefersStatusBarHidden { return NO;//是否显示状态栏 yes是隐藏,NO是显示 }
iOS7新特性
时间: 2025-01-05 11:21:26