gpt4 book ai didi

ios - 在将图像保存在图库中时获取图像路径,稍后使用 swift 在 iOS 中使用路径检索该图像

转载 作者:行者123 更新时间:2023-11-28 08:36:02 26 4
gpt4 key购买 nike

<分区>

我正在使用此代码将图像保存在图库中并且工作正常,图像保存在模拟器的图库中。

import UIKit

class ViewController: UIViewController {

override func viewDidLoad() {
super.viewDidLoad()

var myImage : UIImage = UIImage(named: "sample")!
UIImageWriteToSavedPhotosAlbum(myImage, self, "image:didFinishSavingWithError:contextInfo:", nil)
}

func image(image: UIImage, didFinishSavingWithError error: NSError?, contextInfo:UnsafePointer<Void>) {
if error == nil {
let ac = UIAlertController(title: "Saved!", message: "Your altered image has been saved to your photos.", preferredStyle: .Alert)
ac.addAction(UIAlertAction(title: "OK", style: .Default, handler: nil))
presentViewController(ac, animated: true, completion: nil)
} else {
let ac = UIAlertController(title: "Save error", message: error?.localizedDescription, preferredStyle: .Alert)
ac.addAction(UIAlertAction(title: "OK", style: .Default, handler: nil))
presentViewController(ac, animated: true, completion: nil)
}
}
}
  • 如何获取刚刚保存在图库中的图片的路径?
  • 然后使用该路径,如何从图库中取回图像并在我的应用程序中使用它?

我正在使用 Xcode 7.3 ans swift 2.0 提前致谢。

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