我正在开发这个应用开发教程:
然后我到了你使用信息词典的部分(在教程的末尾),但我收到错误“使用未解析的标识符'信息'”。我复制并粘贴了他们提供的代码:
//The info dictionary contains multiple representations of the image,
//and this uses the original.
let selectedImage = info[UIImagePickerControllerOriginalImage] as! UIImage
但它无法正常工作
答案 0 :(得分:0)
代码应该放在这个方法中:
func imagePickerController(picker: UIImagePickerController,
didFinishPickingMediaWithInfo info: [String : AnyObject]) {
}
info
是函数的参数之一。