zoukankan      html  css  js  c++  java
  • 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
     
    

      

  • 相关阅读:
    MySQL性能优化的最佳经验
    18个网站SEO建议
    sql之left join、right join、inner join的区别
    PHP与MYSQL事务处理
    Firefox上Web开发工具库一览
    SphinxSE的安装
    python XML
    python yaml
    C语言文本处理
    Linux strace命令
  • 原文地址:https://www.cnblogs.com/saytome/p/8343831.html
Copyright © 2011-2022 走看看