我的代码:
func imagePickerController(_ picker: UIImagePickerController, didFinishPickingImage image: UIImage, editingInfo: [String : AnyObject]?) {
self.image = image
self.imageStatusLabel.text = "There is a picture"
self.imageStatusLabel.textColor = UIColor.blue()
picker.dismiss(animated: true, completion: nil)
}
这是错误:
无法覆盖已标记为不可用的“imagePickerController”:从 iOS 7 及更早版本开始弃用的 API 在 Swift 中不可用
好吧,我尝试使用较新的功能:
func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : AnyObject]) {
// But no image in the parameters
}
但是,参数中没有图像,我可以得到图像。
我应该怎么办?