Carthage使用中的注意事项

1、了解Carthage: http://www.cocoachina.com/ios/20141204/10528.html

2、了解Carthage的优缺点:http://www.open-open.com/lib/view/open1436886568084.html


下边进入正点:Carthage使用中的一些注意事项


1、引入如” github "stephencelis/SQLite.swift" "master" “ 要把后边的分支、版本号等等需要的填写完整,可能会导致,无法找到的问题。

2、carthage update 失败,出现如下错误”

*** FetchingSQLite.swift

No tagged versions found for github "stephencelis/SQLite.swift"

原因就是: Cartfile文件中,第三方库的连接写错了,” github "stephencelis/SQLite.swift" “改为github "stephencelis/SQLite.swift" "master" “,关键要严格按照github上的地址填写。

3、carthage 所在的文件夹,尽量不要使用中文名字,会造成,第三库导出framework失败。

4、Carthage引入工程出现类似错误:“

dyld: Library not loaded: @rpath/Alamofire.framework/Alamofire

  Referenced from: /var/mobile/Containers/Bundle/Application/0D926802-691A-49F6-A5A9-1AABB42BA5EB/carthageTest.app/carthageTest

  Reason: image not found

解决方法如下:要在Embedded Binaries 中引入framewor

Carthage使用中的注意事项_第1张图片

你可能感兴趣的:(iOS)