美文网首页
ios开发中使用CocoaPods(2022-3-1 )

ios开发中使用CocoaPods(2022-3-1 )

作者: 善良的皮蛋 | 来源:发表于2020-07-13 10:11 被阅读0次

在iOS开发中不可避免的需要引入第三方库,为了更好地管理这些第三方库,我们使用CocoaPods.

  • 2020-11-25更新

突然使用在搜索第三方库的时候 pod search AFNetworking``pod install 出现以下错误:Setup completed [!] Unable to find a pod with name, author, summary, or description matching AFNetwork

忘记之前做了那些瞎操作,安装不了cocoapods,搜了很多资料,先安装了homebrew,homebrew安装教程

安装成功之后,在来 安装cocopods,cocoapods安装教程


  • 创建Podfile文件
  1. 创建一个Project,打开终端输入命令符 cd 当前工程
  2. 输入 vim Podfile 进入Podfile 中编辑Project信息
platform :ios, '9.0' 
target '工程名' do  

end
  • 添加第三方库
  1. pod search AFNetworking
  2. Podfile 文件中添加 pod 'AFNetworking', '~> 3.2.1' 然后 wq操作返回保存,在终端中 pod install 成功后即成功安装AF
  • 搜索第三方库出现无法识别的情况


    image.png

    这种情况出现了搜索网上大部分答案都不对,最后用的是这种方法:

pod repo remove master
cd ~/.cocoapods/repos
git clone --depth 1 https://github.com/CocoaPods/Specs.git master
pod install --no-repo-update

出现:


image.png

即可。

pod search FMDB

更新Cocoapods

执行
如果失败了,按照安装的顺序再操作一遍

  • 让自己的开源项目支持CocoaPods

后续更新

  • 创建自己的私有Pods

后续更新

相关文章

网友评论

      本文标题:ios开发中使用CocoaPods(2022-3-1 )

      本文链接:https://www.haomeiwen.com/subject/jxzocktx.html