SQLite.swift和SQLiteCipher.swift有没有成功使用?

时间:2016-02-17 19:37:56

标签: swift sqlite sqlcipher

是否有人成功使用SQLiteCipher.swift?

SQLite.swift安装并使用cocoapods。

https://github.com/stephencelis/SQLiteCipher.swift建议 cocoapods安装:

use_frameworks!

pod' SQLiteCipher.swift',   git:' https://github.com/stephencelis/SQLiteCipher.swift.git'

,结果是:

[!]无法找到' SQLiteCipher.swift'的规范。

然后doco建议手动安装:

将SQLiteCipher.xcodeproj文件拖到您自己的项目中。 (首先是子模块或克隆项目。)

在目标的“常规”标签中,点击“链接的框架和库”下的+按钮。

为您的平台选择合适的SQLiteCipher.framework。

单击“添加”。

这导致没有这样的模块SQLiteCipher。

我已经尝试过每一个"没有这样的模块"修复互联网... nada

任何洞察力都赞赏!提前致谢

1 个答案:

答案 0 :(得分:0)

看起来'readme'文件已过时。 我遇到了同样的问题,这里是解决方案(它适用于我,但根据讨论它并不完美):

pod 'SQLiteCipher.swift',
  git: 'https://github.com/stephencelis/SQLite.swift.git',
  branch: 'swift-2'

https://github.com/stephencelis/SQLite.swift/issues/196