Swift项目中使用过的第三方框架

  • 资源:iOS 开发资源汇总
    Swift.md

  • 整个iOS Repos的排名(Swift): Repos

  • 网络库: Alamofire

  • JSON解析库: SwiftJSON

  • JSON to Model: JSONExport

  • 图片浏览库: SKPhotoBrowser

  • 异步图片加载: Kingfisher

  • GCD: Async

  • 键盘通知: KeyboardMan

  • 日志打印: SwiftyBeaver

  • 正则匹配: Regex

  • Notice吐司:
    SwiftNotice
    Toast-Swift

  • 加载HUD: PKHUD

  • 分页菜单: PageMenu

  • 相机、联系人等权限判断: Proposer

import Proposer
// 例如判断相册权限
let openCamera: ProposerAction = { [weak self] in
            
    print("获得权限\n")
}
proposeToAccess(.photos, agreed: openCamera, rejected: {
    
    print("权限被拒\n")
})
  • 网络监听: Reachability.swift

  • 优雅安全的方式使用资源文件: R.swift
    R.swift参考文档

  • 自动布局:
    SnapKit
    Cartography

  • 识别/生成二维码: swiftScan

  • 图表: Charts

  • 图片压缩: Mozi

  • 自定义TabBarController01: ESTabBarController

  • 自定义TabBarController01: animated-tab-bar

  • ll:

  • ll:

  • ll:

你可能感兴趣的:(Swift项目中使用过的第三方框架)