原文
iOS 项目常用的 Podfile 内容
ReactiveCocoa 5.0及之后的版本,iOS在纯OC(Objective-C)项目中使用RAC,通过CocoaPods配置
1、新建一个项目TestRAC
2、 打开【终端】命令行工具
3、cd 到项目路径,然后执行下面命令,生成项目podfile文件
$ touch podfile
4、搜索ReactiveObjC (按 q 退出第三方库的浏览)
$ pod search ReactiveObjC
5、打开podfile ,配置项目信息
$ open podfile
podfile中需要的内容:
platform :ios, '8.0'
use_frameworks!
target 'TestRAC' do
pod 'ReactiveObjC', '~> 3.0.0'
end
6、下载ReactiveObjC项目文件
$ pod install --no-repo-update
podfile 文件:
# 下面两行是指明依赖库的来源地址
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
网友评论