请求用户相册权限时,用户选择了限制访问引起的异常处理

2024-06-18  本文已影响0人  Kakarot001


1、如果想拿到 PHAsset

完全访问:

PHAsset *asset = info[UIImagePickerControllerPHAsset];

限制访问:

 info[UIImagePickerControllerPHAsset] = nil

2、想拿到视频时长

完全访问:

asset.duration;

限制访问:

NSURL *selectUrl = info[UIImagePickerControllerMediaURL];          NSDictionary *dic = @{AVURLAssetPreferPreciseDurationAndTimingKey:@(YES)};       AVURLAsset *audioAsset = [AVURLAsset URLAssetWithURL:selectUrl options:dic];             

CMTime audioDuration = audioAsset.duration;             audioDurationSeconds = CMTimeGetSeconds(audioDuration);

上一篇 下一篇

猜你喜欢

热点阅读