Displaying Data With NSFetchedResultsController and Swift

1 · Andrew Bancroft · March 5, 2015, 3:14 p.m.
Updated on September 23, 2015 – Swift 2.0 The combination of an NSFetchedResultsController and a UITableView provides a powerful way to integrate Core Data with a user interface. The greatest benefits of using NSFetchedResultsController come when we use it to automatically update a table view when objects are added, updated, or removed from a Core Data data store. First things first, though… With a Core Data data store seeded with data, the next logical step is to display that data somewhere oth...