Swift 3.0 是否支持 Kanna 框架?

Support for Kanna framework in Swift 3.0?

将我的项目从 Swift 2.2 迁移到 3.0 后,我在 Kanna 框架上收到一条错误消息,说

Module file was created by an older version of the compiler. Rebuild Kanna and try again

我是不是做错了什么或者 Kanna 框架在 Swift 3.0 下不工作?

Swift3.0 现在有一个可用的版本,使用 carthage。一切都在这里描述: Kanna github

要使用 Kanna 库 (CocoaPods),您需要将其添加到您的 Podfile:

use_frameworks!

pod 'Kanna', git: 'https://github.com/tid-kijyun/Kanna.git', branch: 'swift3.0'

然后在终端中:

rm Podfile.lock (if exist)
pod init
pod update
pod install

学习来自 here

的教程