以下代碼導致空座標。奇怪的是UIAlert提示應用程序在用戶可以選擇「是」之前使用當前位置。位置管理器給出空座標
我的代碼,我已經使用:
CLLocationManager *locationManager;
locationManager.desiredAccuracy = kCLLocationAccuracyBest;
[locationManager startUpdatingLocation];
locationManager = [[CLLocationManager alloc] init];
locationManager.distanceFilter = kCLDistanceFilterNone;
locationManager.desiredAccuracy = kCLLocationAccuracyHundredMeters;
[locationManager startUpdatingLocation];
float latitude = locationManager.location.coordinate.latitude;
float longitude = locationManager.location.coordinate.longitude;
NSLog(@"%.8f",latitude);
NSLog(@"%.8f",longitude);
的NSLog的打印0.0000000
兩個座標。
謝謝!
我做UILabels分別設置文本的座標,但仍然有臨時UIalert的同樣的錯誤和座標仍然0.000000 – user2402616