위치 값 - CLLocationDegrees 스트링 형식의 디비에 넣거나 web전송을 위해 형변환은 필수이다
CLLocationDegrees - > NSString
NSNumber *firstNumber = [NSNumber numberWithInt:123456789];
NSNumberFormatter *formatter = [[NSNumberFormatter alloc] init];
[formatter setNumberStyle:NSNumberFormatterDecimalStyle];
NSString *convertNumber = [formatter stringForObjectValue:firstNumber];
NSLog(@"value : %@", convertNumber);
또는
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];
NSString - >
CLLocationDegrees
CLLocationDegrees lat = [ufeedJobLatitude doubleValue];
CLLocationDegrees lon = [ufeedJobLongitude doubleValue];
'개발도구 > iOS - 아이폰 개발' 카테고리의 다른 글
[펌-아이폰-비밀] TableView (0) | 2012.05.29 |
---|---|
[아이폰] iOS 5 Storyboard and UITableViews Tutorial (0) | 2012.05.29 |
[아이폰] Google Geocoding API (0) | 2012.05.25 |
[아이폰] php 이미지 저장하기 copy 예약어 (0) | 2012.05.22 |
[아이폰] IOS 카메라 기능 .. overlay 해서 보여주기 (0) | 2012.05.22 |