iOS Magical Record & SQLCipher
I m using Magical Record for saving my data. This data needs encryption, so i m trying to combine it with SQLCipher library( http://sqlcipher.net/ios-tutorial/ ). I already setup SQLCipher and tested it with Core Data successfully, using EncryptedStore file from this example https://github.com/project-imas/encrypted-core-data : What i did was only changed NSPersistentStoreCoordinator like this: NSPersistentStoreCoordinator *coordinator = [EncryptedStore makeStore:[self managedObjectModel]:[SSKeychain passwordForService:myservice account:myaccount]]; So i think i need to change how