photo libraryからのassetの削除について
Swiftを独学で勉強中の初心者です。photo libraryからのassetの削除について、Appleのサイトからサンプルコードを見つけたのですが、}, completionHandler: completion)の所で、
completionに「未解決の識別子の使用」のエラーが出ます。どの様に修正したら良いのでしょうか。諸先輩の皆様、よろしくご教示お願いいたします。
if assetCollection != nil {
// Remove the asset from the selected album.
PHPhotoLibrary.shared().performChanges({
let request = PHAssetCollectionChangeRequest(for: self.assetCollection)!
request.removeAssets([self.asset] as NSArray)
}, completionHandler: completion)
} else {
// Delete the asset from the photo library.
PHPhotoLibrary.shared().performChanges({
PHAssetChangeRequest.deleteAssets([self.asset] as NSArray)
}, completionHandler: completion)
}