如何检查 _mapView.userLocation.location.coordinate.latitude 是否等于 0?
纬度是一种双精度typedef double CLLocationDegrees;
我尝试将它与 0、-0.000000、0.000000 和 0.00 进行比较,但没有运气。
我试过把它转换成这样的字符串
NSLog(@" lat %@", ([NSString stringWithFormat:@"%f", _mapView.userLocation.location.coordinate.latitude] == @"0.000000") ? @"yes" : @"NO" );
string 0.000000
lat NO
但这也不起作用。
我在这里想念什么?