AFN的简单理解

afn全名叫做AFNetworking,是一种网络框架,在开发圈十分流行.流行当然有他的原因,主要是相比较于苹果自带的做了下包装,更加方便.
今天看了一部分源码,发现以前我都是在pch文件拼接baseUrl的,其实afn可以直接写baseUrl,更方便.
afn可以断点续传的,就是下面这个方法

  • (NSURLSessionDownloadTask *)downloadTaskWithResumeData:(NSData *)resumeData
    progress:(NSProgress * __nullable __autoreleasing * __nullable)progress
    destination:(nullable NSURL * (^)(NSURL *targetPath, NSURLResponse *response))destination
    completionHandler:(nullable void (^)(NSURLResponse *response, NSURL * __nullable filePath, NSError * __nullable error))completionHandler;
    afn上传失败后会自动重新尝试三次.
    afn提供了get,post,head,post,put,patch,delete共7种方法,虽然常用的只有三种,get,post,post.
    ios7或者mac 10.9以后是用session,ios6或者mac 10.8以前是用connection.

你可能感兴趣的:(AFN的简单理解)