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
fetchRequest is a read-only property. The line of code in your post will not work. If you want to use a different fetch request, you'll need to replace your controller with a new NSFetchedResultsController. Your table won't reload automatically. You'll need to send it a reloadData message some time after you've replaced the NSFetchedResultsController.