美文网首页
iOS 简单给项目添加pod

iOS 简单给项目添加pod

作者: winsonGali | 来源:发表于2017-11-07 11:33 被阅读0次

老是会忘,毕竟不会频繁新建项目。以前怎么弄得也忘得差不多了,曾经有段时间习惯使用Xcode的CocoaPods插件来安装,后来Xcode不支持插件了,就用终端来安装,代码这种东西,学而不时习之,就是会忘。

1. 新建工程 PodTest
2. 打开终端,cd到 PodTest 根目录
3. 在终端输入 "pod init",会自动创建一个名为 Podfile 的文件
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'PosTest' do
  # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
  # use_frameworks!

  # Pods for PosTest

  target 'PosTestTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'PosTestUITests' do
    inherit! :search_paths
    # Pods for testing
  end

end
4. 编辑 Podfile 文件
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'PosTest' do
  # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
  # use_frameworks!

  # Pods for PosTest

  pod 'SVProgressHUD', :git => 'https://github.com/SVProgressHUD/SVProgressHUD.git'

  target 'PosTestTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'PosTestUITests' do
    inherit! :search_paths
    # Pods for testing
  end

end
5. 在终端输入 "pod install",等待下载完成。
pod install
6. 回到工程目录,双击“PosTest.xcworkspace”进入程序

以下是整个终端输入的代码:

WinsondeMacBook-Pro:~ Winson_microlink$ cd /Users/Winson_microlink/Documents/Xcode\ Projects/PosTest 
WinsondeMacBook-Pro:PosTest Winson_microlink$ pod init
WinsondeMacBook-Pro:PosTest Winson_microlink$ pod install
Analyzing dependencies
Pre-downloading: `SVProgressHUD` from `https://github.com/SVProgressHUD/SVProgressHUD.git`
Downloading dependencies
Installing SVProgressHUD (2.2.2)
Generating Pods project
Integrating client project

[!] Please close any current Xcode sessions and use `PosTest.xcworkspace` for this project from now on.
Sending stats
Pod installation complete! There is 1 dependency from the Podfile and 1 total pod installed.

[!] Automatically assigning platform ios with version 11.0 on target PosTest because no platform was specified. Please specify a platform for this target in your Podfile. See `https://guides.cocoapods.org/syntax/podfile.html#platform`.
WinsondeMacBook-Pro:PosTest Winson_microlink$

相关文章

  • iOS 简单给项目添加pod

    老是会忘,毕竟不会频繁新建项目。以前怎么弄得也忘得差不多了,曾经有段时间习惯使用Xcode的CocoaPods插件...

  • 使用Pod 给IOS项目添加依赖

    首先,我们需要给我们的电脑安装pod ,网上太多文章 不在赘述,自行上网查。我们来到项目的根目录。 按照格式填入p...

  • CALayer 添加圆角阴影

    使用pod pod 'UIShadow+UIView' iOS开发中给一张图片或者一个UIView 添加圆角的...

  • flutter iOS 混编步骤

    1.创建公共文件 2.创建iOS项目 3.创建flutter模块 iOS引入pod管理 在profile文件中添加...

  • Flutter 接入iOS 腾讯云超级播放器SDK

    1. 通过CocoaPods导入腾讯云超级播放器SDK 在项目/iOS/Podfile中添加 pod 'Super...

  • 2019-07-31 记录私有库坑 :Include of no

    如何给自己项目添加Pod支持,让别人也可以 pod install,愉快的使用你的库,请看这里???:https:...

  • iOS 为项目添加pod依赖

    一)新建项目之后,通过命令行cd 到当前项目路径 cd targetPath 二)通过vim Podfile 创建...

  • 给新项目添加Pod管理

    步骤如下: 打开终端 cd 到项目的, 然后在终端执行:pod init,项目文件夹中多处一个Podfile文件i...

  • iOS项目简单集成pod

    记录一下,太长时间了,怕忘了 iOS开发中不可避免的需要使用大量第三方库,可以通过pod方式来管理第三方库 1.首...

  • React native 升级0.6的坑

    iOS中依赖的安装0.6中iOS全部使用pod安装依赖,添加完依赖,如果报错,记得在iOS目录下执行pod ins...

网友评论

      本文标题:iOS 简单给项目添加pod

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