新的 cocoaPods 使用的命令 mac os 10.11 以后

来源:互联网 发布:uri malformed 解决js 编辑:程序博客网 时间:2024/05/21 23:00
platform :ios, "6.0"
pod "三方库名称"
target :工程名称 do

end


例如

source 'https://github.com/CocoaPods/Specs.git'

platform :ios, "6.0"

pod "AFNetworking"
pod "SDWebImage"

target :TouchTest do

  # pod 'Kiwi'

end

0 0