iOS 项目常用的 Podfile 内容

 
  pod 'Alamofire'
  pod 'SwiftyJSON'
  pod 'HandyJSON', '~>4.0.0-beta.1'
  pod 'Kingfisher'
  pod 'IBAnimatable'
  pod 'SwiftTheme'
  pod 'RxSwift'
  pod 'RxCocoa'
  pod 'SQLite.swift'
  pod 'SVProgressHUD'
  pod 'MJRefresh'
  pod 'SGPagingView'
  pod 'BMPlayer'
  pod 'FDFullscreenPopGesture'
  # pod 'Texture'
 

  

# 下面两行是指明依赖库的来源地址
source 'https://github.com/CocoaPods/Specs.git'
source 'https://github.com/Artsy/Specs.git'

# 说明平台是ios,版本是9.0
platform :ios, '9.0'

# 忽略引入库的所有警告(强迫症者的福音啊)
inhibit_all_warnings!


target 'LCCopybook' do

use_frameworks!

pod 'DZNEmptyDataSet'

pod 'NVActivityIndicatorView'

pod 'SnapKit'

pod 'YYKit'
pod 'RxSwift'
pod 'Moya'

pod 'LCAlertPop’, :git => 'https://github.com/iRemark/LCAlertPop.git'
pod 'pop'
pod 'MBProgressHUD'
pod 'AsyncDisplayKit'

pod 'Alamofire'
pod 'PrivacyPermission'

end
 

  

原文地址:https://www.cnblogs.com/saytome/p/8343831.html