До iOS 4.0, CoreLocation
правильно сообщал высоту, теперь он всегда сообщает как 0 фут.
-(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 not relevant,
and this worked prior to iOS 4.0*/
[manager stopUpdatingLocation];
}
Не работает на устройстве или симуляторе, кто-нибудь еще испытывает эту проблему?