ios开发使用pod命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ios开发使用pod命令相关的知识,希望对你有一定的参考价值。
参考技术A 1、终端,通过cd指令进入到项目的文件的目录中如从我的个人目录进入到Xcode-project目录:
cd Xcode-project
cd tryPod
2、在目录下生成profile文件,并复制如下内容
# Uncomment this line to define a global platform for your project
# platform :ios, '9.0'
target '项目名称' do
# Uncomment this line if you're using Swift or would like to use dynamic frameworks
# use_frameworks!
pod "库名称"
# Pods for IOS_SqlLite
target '项目名称Tests' do
inherit! :search_paths
# Pods for testing
end
target '项目名称UITests' do
inherit! :search_paths
# Pods for testing
end
end
以上是关于ios开发使用pod命令的主要内容,如果未能解决你的问题,请参考以下文章