So, I have a main application for storing, searching and processing data. Basic CRUD operations. In different places in my code where I store or update this data, I basically have this:
NSError *error; if (![self.managedObjectContext save:&error]) {
What do most people do, from the user's point of view, when such things happen?
The only thing that comes to mind is simply to release a terrible UIAlertView with an indefinite message that something went wrong; not quite sure how to recover these things.
For the argument, let's assume that my model has almost no validations, so the only errors that can occur would either be something terrible or a programming problem.
Any good ideas for working with users?
user-interface iphone core-data user-experience
davetron5000
source share