Hello Stacked-Experts!
Мой вопрос: как сгенерировать строку из значения CLLocationDegrees?
Неудачные попытки:
1. NSLog(@"Value: %f", currentLocation.coordinate.latitude); //Tried with all NSLog specifiers.
2. NSNumber *tmp = [[NSNumber alloc] initWithDouble:currentLocation.coordinate.latitude];
3. NSString *tmp = [[NSString alloc] initWithFormat:@"%@", currentLocation.coordinate.latitude];
Когда я смотрю в определении CLLocationDegrees, в нем четко говорится, что это двойное число:
typedef double CLLocationDegrees;
Что мне здесь не хватает? Это сводит меня с ума ... Пожалуйста, помогите спасти мой разум!
Спасибо заранее и наилучшими пожеланиями.
// Abeansits