Changing the Sorting in an NSFetchedResultsController on the fly

Viewed 12423

I'm trying to change the sorting in a NSFetchController on the fly, by some sort of segmented control. To either sort A->Z Z->A type thing.

What do I have to do to do this? I'm following Jeff Lamarche's example here: Here

Do I need to make a new NSFetchedResultsController and then set it, or do I just make a new NSFetchRequest and do

fetchedResultController.fetchRequest = newFetchRequest

and then my table will automatically update?

4 Answers
Related