두 개의 날짜 범위와 I am getting the images successfully 사이의 사진 라이브러리에서 이미지를 가져 오려고합니다.iOS에서 PHAsset을 사용하여 이미지의 위도와 경도를 얻는 방법은 무엇입니까?
그리고 아래의 코드를 사용하여 이미지 정보를 얻고 있습니다.
PHContentEditingInputRequestOptions *options = [[PHContentEditingInputRequestOptions alloc] init];
options.networkAccessAllowed = YES; //download asset metadata from iCloud if needed
[asset requestContentEditingInputWithOptions:options completionHandler:^(PHContentEditingInput *contentEditingInput, NSDictionary *info) {
CIImage *fullImage = [CIImage imageWithContentsOfURL:contentEditingInput.fullSizeImageURL];
//NSLog(@"fullImage=%@", fullImage.properties.description);
}];
하지만 이미지 정보는 나를 문자열 형식으로 표시합니다.
NSDictionary 형식 (위도 및 경도 얻기)으로 변환하려고했지만 null 출력이 발생했습니다.
어떻게 이미지의 위도와 경도를 얻을 수 있습니까?
얻을 수있는 또 다른 방법이 있는지 정보가
가 사전에 감사합니다 좀 도와주세요