我不知道如何在 swift 中声明以下方法:
- (void)downloadImageWithURL:(NSURL *)url completionBlock:(void (^)(BOOL succeeded, UIImage *image))completionBlock {
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
[NSURLConnection sendAsynchronousRequest:request
queue:[NSOperationQueue mainQueue]
completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
if ( !error )
{
UIImage *image = [[UIImage alloc] initWithData:data];
completionBlock(YES,image);
} else{
completionBlock(NO,nil);
}
}];
}
我从 natashatherobot 博客中找到了这种方法:http: //natashatherobot.com/ios-how-to-download-images-asynchronously-make-uitableview-scroll-fast/
我想快速调用相同的方法,一旦异步请求获取图像,将其传递给完成块。
你有什么建议?