June 2016
Beginner to intermediate
240 pages
6h 17m
English
Although the previous sections show how to access the Core Data repository in our recipe application with KVO and KVC, let’s quickly review the other elements that, if we wanted or needed to, could be utilized to display the data in our application as well.
NSObjectController shares a lot of similarities with the NSArrayController discussed earlier. However, unlike NSArrayController, NSObjectController is designed to represent one instance rather than an array of instances. A common usage of the NSObjectController is to represent the selected object of an NSArrayController, thereby making it clearer as to what data is being displayed in the interface elements that are ...