は、CoreLocation
が正しく高度を報告したが、今では常に0フィートとして報告します。のiOS CoreLocation高度
-(void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation*)newLocation fromLocation:(CLLocation *)oldLocation
{
NSString *tLatitude = [NSString stringWithFormat:@"%3.5f", newLocation.coordinate.latitude];
NSString *tLongitude = [NSString stringWithFormat:@"%3.5f", newLocation.coordinate.longitude];
/* the following returns 0 */
NSString *tAltitude = [NSString stringWithFormat:@"%i", newLocation.altitude];
/* theres more code, but it's not relevant,
and this worked prior to iOS 4.0*/
[manager stopUpdatingLocation];
}
デバイスやシミュレータ上で動作していない、他の誰がこの問題を経験していますか? Core Location Data Types Referenceから
デバイスまたはシミュレータでこれをテストしていますか? –
デバイスとシミュレータ。 – WrightsCS