Hi all,
I'm developing an app that uses Core Data as storage technology.
When I add a new object to the tableView, it is possible to choose a category.
Each category row have an image setted with imageView.image property.
In the core data model I declared a transformable attribute to store this cell image in Core Data.
When I save the new object, all works but I have a mistake with the tableView. In fact the labels of the cells that show some information stored in the database are modified and they show bad values. But if I try to tap on a row for read the details, this are showed good, without errors or mistakes.
In the viewWillAppear:animated method I call the function [self.tableView reloadData] for reloading the data showed in the tableView.
I found the this can be one of the possibly cause of this mistake in fact, if I commet this line of code, the information showed in the tableView are all corrects but the image don't show.
Finally commented always this line of code, if I tap to a row and then I return to the root view of the tableView the image shows...
Can anyone help me?
Sorry for some errors in my English but I'm Italian
P.S.: If there is anyone who can help me, I consider if he can talk with me in private for show the source code
Thanks a lot!
Matteo