PHImageResultIsDegradedKey/PHImageFileURLKey is not found

前端 未结 9 902
忘了有多久
忘了有多久 2020-12-09 22:59

iOS 13 beta4 no longer gives

1) PHImageFileURLKey 2) PHImageResultIsDegradedKey in image result info keys.

Anyone knows a way to find the fileurl of the P

9条回答
  •  悲哀的现实
    2020-12-09 23:45

    Some example Objective-C code for anyone else looking for it:

    PHContentEditingInputRequestOptions *editOptions = [[PHContentEditingInputRequestOptions alloc] init];
    
    [myPHAsset requestContentEditingInputWithOptions:editOptions completionHandler:^(PHContentEditingInput *contentEditingInput, NSDictionary *info) {
    
        if (contentEditingInput.fullSizeImageURL) {
            //do something with contentEditingInput.fullSizeImageURL
        }
    
    }];
    

提交回复
热议问题