hi, i got a tableview which is the one by default when you create a tableview using core data application, and there is this fetching managed object i don't really understand, anyway when the user delete something from the tableview i need to take the object that is deleted and gets it as a String, it is possible?
NSManagedObjectContext *context = [fetchedResultsController managedObjectContext];
[context deleteObject:[fetchedResultsController objectAtIndexPath:indexPath]];
this is where the object is deleted, i need to know what item as been deleted in a string. Thank you