【Swift】安装CocoPods时遇到的Podfile问题集

2016-12-21  本文已影响53人  布袋的世界

2017-2-11号补充,更加方便快捷的Cocopods

Podfile

use_frameworks!
target 'JustDemo' do
pod 'Just'
pod 'Kingfisher'
end

// Mark: - https://github.com/JustHTTP/Just
在XODE里,右键点击工程名

Open with External Editor 输入

pod update —no-repo-update (--)

若要进行更新则

pod update





pod终端常用命令

进入工程文件夹

cd desktop

cd cocoa pods //自定义的文件夹名称

cd swiftyjson //工程名

touch Podfile // 建立空白 Podfile

// 以下为 Podfile的内容

platform:ios,'10.0' //指定IOS版本

target "SwiftyJson" do //指定工程名称

pod 'SwiftyJSON', '~> 3.1.3' //使用 pod search SwiftyJSON

use_frameworks!

end

pod search UI

pod search SwiftyJson

退出 wq

上一篇下一篇

猜你喜欢

热点阅读