美文网首页
适配型号

适配型号

作者: 晨曦景雪 | 来源:发表于2016-11-30 15:07 被阅读5次

//适配ios7

if ([[[UIDevice currentDevice] systemVersion] doubleValue]>=7.0) {

self.navigationController.navigationBar.translucent = NO;

}

if ([[UIDevice currentDevice].systemVersion floatValue] >= 8) {

//由于IOS8中定位的授权机制改变 需要进行手动授权

CLLocationManager  *locationManager = [[CLLocationManager alloc] init];

//获取授权认证

[locationManager requestAlwaysAuthorization];

[locationManager requestWhenInUseAuthorization];

}

相关文章

网友评论

      本文标题:适配型号

      本文链接:https://www.haomeiwen.com/subject/spstrttx.html