the problem I am encountering is the following:
I have a UITableView which I feed with data from an NSFetchedResultsController which retrieves around 6000 rows from core data. The fetchBatchSize of the NSFetchRequest is set to 20 and if I do not apply any NSSortDescriptor the fetch is fast enough to not block the UI thread.
However, I do need to display those rows sorted alphabetically for which I use the following NSSortDescriptor:
[[[NSSortDescriptor alloc] initWithKey:@"optionText" ascending:YES selector:@selector(localizedCaseInsensitiveCompare:)] autorelease];
And here is when things change, the fetch operation now takes around 3 seconds to complete because the 6000 rows are being sorted. Obviously during those seconds the UI is blocked and the user experience is terrible.
I know that I could do the fetch in a background thread and then pass to object IDs to the main thread, but in that case how could I still use the NSFetchedResultsController in the main thread (I am also using it to observe changes on the data)?
I have also indexed the attribute on which I am sorting but that only optimises look-ups and not sorting performance.
Any ideas would be much appreciated, thanks!