美文网首页
CocoaPods 的使用 SDK 和集成 git

CocoaPods 的使用 SDK 和集成 git

作者: Gabriella0629 | 来源:发表于2017-05-25 18:39 被阅读0次

CocoaPods:
http://blog.csdn.net/showhilllee/article/details/38398119/

vim cocoapods:
按i编辑
模版:

Uncomment the next line to define a global platform for your project

platform :ios, '9.0'

Comment the next line if you're not using Swift and don't want to use dynamic frameworks

use_frameworks!

target 'DouyuZB-Swift' do

pod 'Alamofire', '~> 4.0.1'
pod 'Kingfisher', '~> 3.1.1'
pod 'SnapKit'
end

强制保存: :wq!

问题:
The dependency `` is not used in any concrete target

The dependency AFNetworking is not used in any concrete target
http://blog.csdn.net/sjl_leaf/article/details/50506057
头文件不实现
http://www.360doc.com/content/15/0302/15/20919452_451991897.shtml

-fembed-bitcode is not supported on versions of iOS prior to 6.0
http://www.byjth.com/developer/50.html

alcatraz 安装

集成 git:
http://www.jianshu.com/p/aab20a36670d

问题:commit 不成功 需要config name
解决:

git config user.email
“账号"

git config user.name
"名字"

相关文章

网友评论

      本文标题:CocoaPods 的使用 SDK 和集成 git

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