Lütfen seçici görüntüyü kullanarak seçilen görüntünün yolunu almanın yolunu söyle.IOS Swift seçili görüntü yolu olsun
func addImage(sender: AnyObject){
picController.allowsEditing = false
picController.sourceType = UIImagePickerControllerSourceType.PhotoLibrary
self.presentViewController(picController, animated: true, completion: nil)
}
func imagePickerController(picker: UIImagePickerController, didFinishPickingImage image: UIImage, editingInfo: [String : AnyObject]?) {
self.dismissViewControllerAnimated(true, completion: nil)
titleImageView.image = image
//Get the path of the image selected
// print(path)
}
Görüntünün yolunu yazdırmak istiyorum. Teşekkür ederiz
Gün içinde bir çok –