gpt4 book ai didi

xcode - 在模拟器中使用 UIImageWriteToSavedPhotosAlbum 时图像保存到什么路径?

转载 作者:行者123 更新时间:2023-11-30 14:18:37 26 4
gpt4 key购买 nike

我有一个正在使用的应用

UIImageWriteToSavedPhotosAlbum(img, self, "image:didFinishSavingWithError:contextInfo:", nil)

保存应用程序创建的图像。我想在我的计算机上检查这些图像,因为它们是在模拟器上运行应用程序时保存的,但我找不到这些图像存储在计算机上的位置。希望有任何意见。

最佳答案

  Try this:

let imageData = NSData(data:UIImagePNGRepresentation(pickedimage))
let paths = NSSearchPathForDirectoriesInDomains(NSSearchPathDirectory.DocumentDirectory, NSSearchPathDomainMask.UserDomainMask, true)
var docs: String = paths[0] as! String
let fullPath = docs.stringByAppendingPathComponent("yourNameImg.png")
let result = imageData.writeToFile(fullPath, atomically: true)
print(fullPath)

关于xcode - 在模拟器中使用 UIImageWriteToSavedPhotosAlbum 时图像保存到什么路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30808074/

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