Estou tendo problema no trecho do código que recupera a foto pra usar no aplicativo.
No trecho do arquivo ImagePicker.swift :
private func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : Any]) {
let foto = info[UIImagePickerControllerOriginalImage] as! UIImage
delegate?.imagePickerFotoSelecionada(foto)
picker.dismiss(animated: true, completion: nil)
Dá a seguinte mensagem: "Cannot subscript a value of type '[String : Any]' with an argument of type 'UIImagePickerController.InfoKey'""
Acredito se tratar de algum tipo de atualização, mas não sei como tratar.
Tô usando Swift 5, iOS 13.2.
Alguém ajuda?