CocoaPods使用笔记

这篇博客详细介绍了CocoaPods的使用,包括查看版本、安装升级、创建Podfile、添加管理第三方库、搜索库信息及处理常见问题。在Podfile设置中讲解了如何关闭警告提示和调整buildsettings。此外,还记录了ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES问题的解决方案,并提到了国内镜像源的使用。
摘要由CSDN通过智能技术生成

Pod 命令

1、CocoaPods版本查看
pod --version
2、安装升级CocoaPods
sudo gem install cocoapods

如果报权限错误,执行以下命令

sudo gem install -n /usr/local/bin cocoapods
3、创建Podfile
$ vim Podfile
platform :ios, '9.0'

target "CocoapodsDemo" do

    pod "AFNetworking"
    pod 'Masonry'
end 

注:冒号和ios是连着的,中间没有空格,有空格会报错。

esc取消输入,:wq退出编辑

4、添加第三方库(添加、更新、移除第三方库都用这个)
pod install

添加后我遇到一下提示信息

[!] The `CocoapodsDemo [Debug]` target overrides the `HEADER_SEARCH_PATHS` build setting defined in `Pods/Target Support Files/Pods-CocoapodsDemo/Pods-CocoapodsDemo.debug.xcconfig'. This can lead to problems with the CocoaPods installation
    - Use the `$(inherited)` flag, or
    - Remove the build settings from the target.

[!] The `CocoapodsDemo [Debug]` target overrides the `OTHER_LDFLAGS` build setting defined in `Pods/Target Support Files/Pods-CocoapodsDemo/Pods-CocoapodsDemo.debug.xcconfig'. This can lead to problems with the CocoaPods installation
    - Use the `$(inherited)` flag, or
    - Remove the build settings from the target.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值