Próbuję wyświetlić obraz z biblioteki zdjęć w UIImageView
Pełny błąd to:
2017-06-09 21: 55: 59.063307 + 0200 firstapp2.0 [12873: 1120778] Błąd wykrywania PhotoPicker: Error Domain = PlugInKit Code = 13 „zapytanie anulowane” UserInfo = {NSLocalizedDescription = zapytanie anulowane}
Mój kod znajduje się poniżej:
import UIKit
class ViewController: UIViewController,UIImagePickerControllerDelegate,UINavigationControllerDelegate{
@IBOutlet weak var pic: UIImageView!
@IBOutlet weak var text: UILabel!
var chosenImage : UIImage!
override func viewDidLoad() {
super.viewDidLoad()
pic.isUserInteractionEnabled = true;
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [AnyHashable: Any]) {
var chosenImage = info[UIImagePickerControllerEditedImage]
self.pic!.image = chosenImage as! UIImage
picker.dismiss(animated: true, completion: nil)
}
func imagePickerControllerDidCancel(_ picker: UIImagePickerController) {
picker.dismiss(animated: true, completion: nil)
}
@IBAction func tap(_ sender: Any) {
self.text.text = "Kreason"
let imagePicker = UIImagePickerController()
imagePicker.delegate = self
imagePicker.sourceType = UIImagePickerControllerSourceType.photoLibrary
imagePicker.allowsEditing = false
self.present(imagePicker, animated: true, completion: nil)
}
}
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary<NSString *,id> *)info
wartości słownika są rzutowane jako id w obj-c. Zaimplementowałem również żądanie autoryzacji i obsługę dostępu do biblioteki zdjęć użytkownika: nadal otrzymuję komunikat o błędzie. Dodałem w pliku info.plist wpis dotyczący prywatności na potrzeby biblioteki zdjęć użytkownika.