我以这种方式向 CLLocation 提供 lat long 。
CLLocation *loc = [[CLLocation alloc]init];
loc.coordinate.latitude = [sLat floatValue];
loc.coordinate.longitude = [sLng floatValue];
来自(哪里
NSMutableDictionary *locat = [dictLoc valueForKey:@"location"];
sLat = [locat valueForKey:@"lat"];
sLng = [locat valueForKey:@"lng"];
在控制台中显示正确的值,但在分配给 cllocation 时会终止。请指导以上。谢谢。