240 发简信
IP属地:青海
  • React Native在Mac上的坑

    1、提示react native "config.h" file not found 修改pakage.json 测试版本: "react": "16.0.0-alpha.1...

  • Alamofire源码解析 - ResponseSerialization

    首先定义了两个协议DataResponseSerializerProtocol和DownloadResponseSerializerProtocol,以及这两个协议的实现类型...

  • Alamofire源码解析 - Result<Value>

    对应response中的result属性

  • Alamofire源码解析 - Response

    定义了四种类型用于保存请求返回的数据 DefaultDataResponse 一般DataRequest对应的response DataResponse<Value> 和de...

  • Alamofire源码解析 - Request

    Request.swift代码结构主要是由Request及其它的三个子类DataRequest,DownloadRequest,UploadRequest组成,另外还有Str...

  • Alamofire源码解析 - ParameterEncoding

    这段代码就是对ParameterEncoding协议的三种不同实现,分别是URLEncoding,JSONEncoding,PropertyListEncoding。以及定义...

  • Alamofire源码解析 - DispatchQueue+Alamofire

    获取不同优先级的队列 延迟执行的方法 同步调用