Overview:
Stanford iOS tutorials contains an implementation (header + implementation file) to help use the table view while using core data.
Link - http://www.stanford.edu/class/cs193p/cgi-bin/drupal/downloads-2011-fall
File Name - CoreDataTableViewController.zip
CoreDataTableViewController.h
contains the following text:
// Remember that once you create an NSFetchedResultsController, you CANNOT modify its @propertys. If you want new fetch parameters (predicate, sorting, etc.), create a NEW NSFetchedResultsController and set this class's fetchedResultsController @property again.
Question
It sounds a bit strange, because in docs they mention situation when you change properties, and recommend some thing in this case... Look like some mistake, or I miss something. If i just change predicate and fetch again, everything works...