作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
为了获取照片的创建日期,所以在显示 PHPickerViewController 之前使用 requestAuthorizationForAccessLevel。
PHAccessLevel level = PHAccessLevelReadWrite;
[PHPhotoLibrary requestAuthorizationForAccessLevel:level handler:^(PHAuthorizationStatus status) {
if (status == PHAuthorizationStatusLimited || status == PHAuthorizationStatusAuthorized) {
dispatch_async(dispatch_get_main_queue(), ^{
PHPickerConfiguration *configuration = [[PHPickerConfiguration alloc] initWithPhotoLibrary:[PHPhotoLibrary sharedPhotoLibrary]];
configuration.filter = [PHPickerFilter imagesFilter];
configuration.selectionLimit = 1;
PHPickerViewController *picker = [[PHPickerViewController alloc] initWithConfiguration:configuration];
picker.delegate = self;
[self showViewController:picker sender:nil];
});
}
}];
尽管状态为 .limited,但 iOS 14 仍然显示所有图像。
最佳答案
所以 iOS 14 中发生了一些变化,让我们一步一步来看看
1.如何读取PHPhotoLibrary访问权限状态
老的
let status = PHPhotoLibrary.authorizationStatus()
新的
let status = PHPhotoLibrary.authorizationStatus(for: .readWrite)
2.如何申请PHPhotoLibrary访问权限
PHPhotoLibrary.requestAuthorization { status in
//your code
}
新的
PHPhotoLibrary.requestAuthorization(for: .readWrite) { status in
switch status {
case .limited:
print("limited access granted")
default:
print("denied, .restricted ,.authorized")
}
}
如果用户授予您有限的权限,您有责任像下面的示例代码一样显示图库
if status == .limited {
PHPhotoLibrary.shared().presentLimitedLibraryPicker(from: self)
}
当您展示LimitedLibraryPicker 时,上一个 session 中选定的图像将被标记为选中,并且屏幕顶部会显示一条消息-“选择更多照片或取消选择以删除访问权限”
Failed to decode image
[ImageManager] Failed to get sandbox extension for url: file///filepath/5003.JPG, error: Error Domain=com.apple.photos.error Code=41008 "Invalid asset uuid for client" UserInfo={NSLocalizedDescription=Invalid asset uuid for client}
关于ios14 - 如何在 iOS 14 中使用 PHAuthorizationStatusLimited,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63822338/
为了获取照片的创建日期,所以在显示 PHPickerViewController 之前使用 requestAuthorizationForAccessLevel。 PHAccessLevel
我是一名优秀的程序员,十分优秀!