1. 地圖定位問題,委托方法無(wú)法調(diào)用
_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來(lái)動(dòng)態(tài)確定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;這個(gè)委托方法來(lái)設(shè)置高度了。