in a news project for my company I need to provide a search function.
I'm using a UITableViewController and CoreData/NSFetchedResultsController to show the news and a UISearchDisplayController to provide the search.
Now my question: What is the better way: - to use the same fetchedResultsController for the "normal" Table AND the search results table - to use a second fetchedResultsController for the search results table
Thanx!