presentsViewController:动画不起作用

时间:2012-09-12 02:20:54

标签: iphone objective-c

我正在尝试使用相机API拍照,但是当我尝试使用

[self presentingViewController:picker animated: YES];

我不断收到错误说:

  

'MainViewController'没有可见的@interface声明选择器'presentsViewController:animated:'

我似乎无法弄清楚如何解决它。

2 个答案:

答案 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.