赞
踩
该篇文章主要说明如何使用cocoapods本地库
上面步骤完成之后,如下图:
pod spec create TestLibary //创建podspec文件
完成后结构如下图:
# 切到项目根路径
cd TestDemo
# pod初始化
pod init
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'TestDemo' do
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
# use_frameworks!
# Pods for TestDemo
pod 'TestLibrary', :path=>'../TestLibrary'
end
pod install
这样就能使用自己本地库了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。