我有带有动态生成的uiimage的代码:
$res=mysqli_query($connection, $query);
我需要在按钮中获取当前显示图像的路径:
for product in self.productObject {
if product.code != nil{
self.imageView1.image = UIImage(contentsOfFile: documentsDir.appendingPathComponent("myfiles").path + "/" + product.code! + ".jpg")
}
}
如何获取并保存到“路径”?