First I thought I’ve grocked that thing: It’s the data source for a UITableView. But then: It does not conform to that data source protocol. Strange! Why? How can it not?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
NSFetchedResultsControlleris not a data source. It’s the intermediary between the data source and theUITableView. For example, it can notify theUITableViewwhen its data source changes. This prevents coupling between the data source theUITableView, which would violate the MVC pattern.