sqlite.swift 与迦太基
sqlite.swift with Carthage
我在 Swift 项目中使用 sqlite.swift。到目前为止,我一直在使用 Cocoapods install/update 图书馆。
是否可以使用 Carthage 安装 sqlite.swift 而不是使用 Cocoapods?
正如 stephencelis 所分享的,您可以按照 github.com/stephencelis/SQLite.swift/
上的详细说明进行操作
Make sure Carthage is installed.
Update your Cartfile to include the following:
github "stephencelis/SQLite.swift"
Run carthage update
and add the appropriate framework in Xcode.
这将安装最新版本。
我在 Swift 项目中使用 sqlite.swift。到目前为止,我一直在使用 Cocoapods install/update 图书馆。
是否可以使用 Carthage 安装 sqlite.swift 而不是使用 Cocoapods?
正如 stephencelis 所分享的,您可以按照 github.com/stephencelis/SQLite.swift/
上的详细说明进行操作Make sure Carthage is installed. Update your Cartfile to include the following:
github "stephencelis/SQLite.swift"
Run
carthage update
and add the appropriate framework in Xcode.
这将安装最新版本。