我正在观看 WWDC 2014 视频A Look Inside Presentation Controllers
我下载了会话的源代码(用 编写Objective-C
),尝试构建它,但出现此错误:
UIPresentationController 没有可见的@interface 声明选择器 initWithPresentingViewController:presentedViewController。
该方法是否假设在UIPresentationController
?
我正在观看 WWDC 2014 视频A Look Inside Presentation Controllers
我下载了会话的源代码(用 编写Objective-C
),尝试构建它,但出现此错误:
UIPresentationController 没有可见的@interface 声明选择器 initWithPresentingViewController:presentedViewController。
该方法是否假设在UIPresentationController
?
我从 UIPresentationController 的文档中找到了答案,该方法应该
- (instancetype)initWithPresentedViewController (UIViewController *)presentedViewController presentingViewController:(UIViewController*)presentingViewController;
不是-(instancetype)initWithPresentingViewController:(UIViewController *)presentingViewController presentedViewController:(UIViewController *)presentedViewController
。一旦我改变它就解决了问题