iOS8 下的一些方法等的变化
2015-01-06 本文已影响0人
齐滇大圣
1. 地图定位问题,委托方法无法调用
-
_locationManager = [[CLLocationManager alloc] init];
[_locationManager setDelegate:self];
[_locationManager requestAlwaysAuthorization]; //这一步是ios8新增加的
[_locationManager startUpdatingLocation]; -
在info.plist 里增加字段(NSLocationWhenInUseUsageDescription和NSLocationAlwaysUsageDescription)
3.增加委托方法
- (void)locationManager:(CLLocationManager*)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status
{
switch (status) {
case kCLAuthorizationStatusNotDetermined:
if ([location respondsToSelector:@selector(requestAlwaysAuthorization)]) {
[locationrequestAlwaysAuthorization];
}
break;
default:
break;
}
}
2. Xcode6在iPhone5+iOS7模拟器上编译,上下有黑边问题的解决方案
3. 使用autolayout来动态确定uitableviewcell的高度(这种方法只有在ios8里可用)参考
_tableView.estimatedRowHeight = 200;
_tableview.rowHeight = UITableViewAutomaticDimension;
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
[cell.contentView layoutIfNeeded];(这句需要加上)
}
不用-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;这个委托方法来设置高度了。