[CocoaPods的问题我不赘述了,点击跳转]
# 网络请求框架
# https://github.com/Alamofire/Alamofire
pod 'Alamofire'
# 强引用的方式使用资源文件(避免使用泛字符串类api导致写错)
pod 'R.swift'
# R.swift的依赖
pod 'R.swift.Library'
R.swift:以一种优雅安全的方式使用资源文件
相关注意点
http://www.jianshu.com/p/0cbea714693d
http://www.darkhandz.com/2017/02/06/学习RxSwift的一些简单用法/
# JSON处理
pod 'HandyJSON'
# 响应式编程三方库。这里主要处理网络请求时的各种回调和异步线程
pod 'RxSwift'
#http://www.cocoachina.com/swift/20170222/18727.html
# R.swift的依赖
pod 'R.swift.Library'
# Alamofire 基础上提供了一系列简单的抽象接口,让客户端代码不用去直接调用
Alamofire,也不用去关心 NSURLSession。同时提供了很多实用的功能,包括对RxSwift的
良好扩展
pod 'Moya'
# Swift的一些实用扩展
pod 'SwifterSwift'
# hud
pod 'PKHUD', '~> 4.0'
# 一个优美的图片选择器
pod 'ImagePicker'
# Swift Style 检查
# 添加时的坑:http://www.jianshu.com/p/86c56ebc590c
pod 'SwiftLint'
网友评论