gpt4 book ai didi

ios - 如何限制同一张照片在 iOS 的自定义相册中再次添加?

转载 作者:行者123 更新时间:2023-11-28 07:57:54 24 4
gpt4 key购买 nike

UIImageWriteToSavedPhotosAlbum(newImage,  self, #selector(image(_:didFinishSavingWithError:contextInfo:)), nil)

使用此方法我可以将图片保存在相册中,但不能限制在相册中再次保存相同的照片

最佳答案

您可以检查该路径(文档目录)是否存在同名文件。

    let fileManager = FileManager.default
var paths = (NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true)[0] as NSString)
paths = paths.appending("nameOfYourFile") as (NSString)
if !fileManager.fileExists(atPath: paths as String){
//no such file exist at this path
UIImageWriteToSavedPhotosAlbum(newImage, self, #selector(image(_:didFinishSavingWithError:contextInfo:)), nil)
}

关于ios - 如何限制同一张照片在 iOS 的自定义相册中再次添加?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47506391/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com