使用未解析的标识符'info'苹果教程

时间:2016-08-11 20:14:04

标签: ios swift

我正在开发这个应用开发教程:

https://developer.apple.com/library/ios/referencelibrary/GettingStarted/DevelopiOSAppsSwift/Lesson4.html#//apple_ref/doc/uid/TP40015214-CH6-SW1

然后我到了你使用信息词典的部分(在教程的末尾),但我收到错误“使用未解析的标识符'信息'”。我复制并粘贴了他们提供的代码:

//The info dictionary contains multiple representations of the image,
//and this uses the original.
let selectedImage = info[UIImagePickerControllerOriginalImage] as! UIImage

但它无法正常工作

1 个答案:

答案 0 :(得分:0)

代码应该放在这个方法中:

func imagePickerController(picker: UIImagePickerController, 
                           didFinishPickingMediaWithInfo info: [String : AnyObject]) {
}

info是函数的参数之一。