Je suis à l'aide d'Apple Swift iOS Tutoriel. Ce qui est en train de jeter une erreur,
Ne peut pas l'indice d'une valeur de type '[Chaîne : Toute]' avec un indice de type " UIImagePickerController.InfoKey'
La fonction qu'ils définis ci-dessous.
func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : Any]) {
// The info dictionary may contain multiple representations of the image. You want to use the original.
guard let selectedImage = info[UIImagePickerControllerOriginalImage] as? UIImage else {
fatalError("Expected a dictionary containing an image, but was provided the following: \(info)")
}
// Set photoImageView to display the selected image.
photoImageView.image = selectedImage
// Dismiss the picker.
dismiss(animated: true, completion: nil)
}
Je suis en utilisant Xcode Version 10.0 beta 3, qui comprend Swift 4.2.
Je voudrais comprendre comment parcourir les docs pour comprendre ce qui pourrait avoir changé ou cassé.