Hi All,
Core data provides the method "executeFetchRequest" in NSManagedObjectContext class, which we can use to fetch data from tables and use it whatever the way need to.
Now there is another way by using NSFetchedResultsController and providing it to UITableView to fetch and data from tables.
My questions are now:
Which way is faster?, I mean performance wise, which one is the best?
Is NSFetchedResultsController is only used with UITableViews?
What are the Pros and Cons of the NSFetchedResultsController.
And last thing, "Why we use NSFetchedResultsController", what thing makes it better than any other way.