更新到Xcode 6.3 / Swift 1.2后,我收到了这些错误。 (.NoCase
无法找到,.insert
不接受(Setter, Setter)
。
SQLite swift API中有什么变化吗?
答案 0 :(得分:1)
SQLite.swift还很年轻,所以当事情变得紧张时,API仍然有点不稳定。很抱歉给您带来不便!
整理序列名称已经取消了。请参阅:https://github.com/stephencelis/SQLite.swift/commit/74e80d3eb4b1108b37c2acec3321cf27f5037843
升级路径:
.Nocase
。
Insert的重载现在返回Int64
。请参阅:https://github.com/stephencelis/SQLite.swift/commit/5380d5b502bd76ea99fe0ec54785f6bacd1cb8c1
更新路径:从
Int64?
返回saveNotes
。