AppDelegate的Objective-c导入功能无法正常工作

时间:2014-09-22 09:13:05

标签: objective-c xcode function appdelegate

在我的AppDelegate.m中,我从url函数编写了一个下载数据。我在尝试着 将函数接收到我的bootController但它会引发我的错误。我错过了什么?

  

没有已知的选择器类方法   'downloadDataFromURL:withCompletionHandler:

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:2)

您应该在其标题中声明该方法。

+ (void)downloadDataFromUrl:(NSURL *)url withCompletionHandler:(void (^)(NSData *data))completionHandler;