我正在尝试使用相机API拍照,但是当我尝试使用
时[self presentingViewController:picker animated: YES];
我不断收到错误说:
'MainViewController'没有可见的@interface声明选择器'presentsViewController:animated:'
我似乎无法弄清楚如何解决它。
答案 0 :(得分:3)
应为[self presentModalViewController: picker animated: YES]
(现已弃用)
或[self presentViewController:picker animated:YES completion: NULL];
查看UIViewController
class reference了解更多详情
答案 1 :(得分:0)
正如@danielbeard建议的那样presentingViewController: animated:
它是presentModalViewController: animated:
。
presentingViewController
是只读属性,用于说明:
“呈现此视图控制器的视图控制器。(只读)”From the doc.