我可以在后台线程中获取 PHAssets 吗?
Can I fetch PHAssets in a background thread?
我想对用户的照片库进行一些处理。由于图书馆可能很大,我想在后台进行。我想知道执行资产提取(如 PHAsset.fetchAssets
)并在后台处理它们是否安全?
我现在只需要资产元数据。
这样的事情安全吗:
class ViewController: UIViewController {
var cachedResult = [Any]()
func doBackgroundCalculationsOnPhotos(completionHandler: ([Any]) -> ()) {
DispatchQueue.global(qos: .userInitiated).async {
let photos = PHAsset.fetchAssets(with: .image, options: nil)
var result = [Any]()
photos.enumerateObjects({ asset, _, _ in
result.append(calculateSomething(asset))
})
DispatchQueue.main.async {
self.cachedResult = result
completionHandler(result)
}
}
}
}
是否有任何文档参考资料可供我了解照片框架和后台访问?
是的,提取可能需要一些时间,因此最好在后台执行此操作,因为 fetchAssets(with:options:)
方法是同步的。
我想对用户的照片库进行一些处理。由于图书馆可能很大,我想在后台进行。我想知道执行资产提取(如 PHAsset.fetchAssets
)并在后台处理它们是否安全?
我现在只需要资产元数据。
这样的事情安全吗:
class ViewController: UIViewController {
var cachedResult = [Any]()
func doBackgroundCalculationsOnPhotos(completionHandler: ([Any]) -> ()) {
DispatchQueue.global(qos: .userInitiated).async {
let photos = PHAsset.fetchAssets(with: .image, options: nil)
var result = [Any]()
photos.enumerateObjects({ asset, _, _ in
result.append(calculateSomething(asset))
})
DispatchQueue.main.async {
self.cachedResult = result
completionHandler(result)
}
}
}
}
是否有任何文档参考资料可供我了解照片框架和后台访问?
是的,提取可能需要一些时间,因此最好在后台执行此操作,因为 fetchAssets(with:options:)
方法是同步的。