I'm making an iPhone app that is like the Apple's "Reminders". It allows user to create reminders, set timers and view / search / reschedule past reminders. Also I'm planning to add iCloud sync. What kind of storage should I use? CoreData or plists?
Asked
Active
Viewed 194 times
1 Answers
1
If you're planning on adding iCloud sync, why not just start with iCloud? If you're using Apple's beta software, you can use CloudKit which has incredibly similar API to CoreData, only it syncs with the users iCloud account. Or, you can upload files (a plist) to their iCloud. Either way, you should start with iCloud if you plan to use it.
As for the question in the title, he says it better than I: Should I save in plist or Core Data?
Here's more info on iCloud / CloudKit