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, он четко заявляет, что это double:
typedef double CLLocationDegrees;
Что мне здесь не хватает? Это заставляет меня сходить с ума... Пожалуйста, помогите спасти мой разум!
Спасибо заранее и с наилучшими пожеланиями. //Abeansits