Downloader.m 581 B

123456789101112131415161718192021222324
  1. //
  2. // Downloader.m
  3. // TumblrDownloader
  4. //
  5. // Created by HonorLee on 16/1/15.
  6. // Copyright © 2016年 HonorLee. All rights reserved.
  7. //
  8. #import "Downloader.h"
  9. @implementation Downloader
  10. #pragma NSURLSessionDownloadDelegate
  11. // After Download Complete
  12. -(void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didCompleteWithError:(NSError *)error{
  13. }
  14. // Data Trans Finish & move the temp file to Document
  15. -(void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didFinishDownloadingToURL:(NSURL *)location{
  16. }
  17. @end