我想为sqlite的包装提供iCloud支持.不使用coredata.
我想知道如何为它启用iCloud.数据库内容始终更改(用于开发票).另外,如果可以进行某种版本控制会很棒.
存在我可以使用的任何样本吗?
简短的回答是否定的,您需要使用您怀疑的核心数据. Apple声称sqlite不受支持.
原文链接:https://www.f2er.com/sqlite/197678.html编辑:在与数据库结合使用iCloud下查看iCloud that’s now in the iOS Application Programming Guide部分
Using iCloud with a sqlite database is possible only if your app uses Core Data to manage that database. Accessing live database files in iCloud using the sqlite interfaces is not supported and will likely corrupt your database. However,you can create a Core Data store based on sqlite as long as you follow a few extra steps when setting up your Core Data structures. You can also continue to use other types of Core Data stores—that is,stores not based on sqlite—without any special modifications.