Перед прошивкой 4.0, 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];
}
Не работает на устройстве, ни Simulator, не кто-либо другой опыт этот вопрос?
Вы тестируете это на устройстве или на тренажере? –
Прибор и симулятор. – WrightsCS