我正在尝试从UIImage获取路径(用于多次选择),而我只是使用框架ImagePicker从图库中获取路径。我从这种方法获取UIImage:
ItemWriter
在此功能上,我需要将路径保存在字符串上
预先感谢
答案 0 :(得分:0)
UIImage
不包含有关任何URL的信息或有关路径的信息。您可以将它们保存在应用程序的documents目录中,然后将路径存储在变量中。
答案 1 :(得分:0)
UIImage
不包含有关资产URL
的任何信息。您应该使用UIImagePickerControllerDelegate
imagePickerController(_:didFinishPickingMediaWithInfo:)来获取URL
info
字典。
func imagePickerController(_ picker: UIImagePickerController,
didFinishPickingMediaWithInfo info: [UIImagePickerController.InfoKey : Any]) {
let imageURL = info[.imageURL] as? URL //here's your URL
}