我的代码在 iOS 13 中停止工作。在我的 UIImagePickerController 委托中,我查看返回的媒体类型(用户选择的事物类型)是否是实时照片。如果是,我使用.livePhoto
密钥获取 PHLivePhoto。这曾经奏效。但在 iOS 13 中,此键的值始终为nil
. 如何获取用户选择的实时照片?
问问题
235 次
1 回答
2
我认为这种行为变化是一个错误。但是,如果您有权限访问用户的照片库,您可以使用.phAsset
值,一个 PHAsset,直接从照片库中获取相应的 PHLivePhoto。
let asset = info[.phAsset] as? PHAsset
if let style = asset?.playbackStyle {
switch style {
case .livePhoto:
// hmm, I'm getting .livePhoto but live _is_ nil!
if live != nil {
self.showLivePhoto(live!)
} else {
print("live is nil!")
// well then I'll fetch it myself, said the little red hen
if let asset = asset {
PHImageManager.default().requestLivePhoto(
for: asset, targetSize: self.redView.bounds.size,
contentMode: .aspectFit, options: nil) {
photo, info in
if let photo = photo {
self.showLivePhoto(photo)
}
}
}
}
// ... other cases ...
@unknown default: fatalError()
}
}
于 2019-10-12T14:57:50.783 回答