CoreData and many NSArrayController
Posted
by unixo
on Stack Overflow
See other posts from Stack Overflow
or by unixo
Published on 2010-05-04T13:18:24Z
Indexed on
2010/05/04
14:18 UTC
Read the original article
Hit count: 221
In my CoreData Application, I've an outline view on left of main window, acting as source list (like iTunes); on the right I display a proper view, based on outline selection. Each view has its components, such as table view, connected to array controller, owned by the specific view. Very often different views display same data, for example, a table view of the same entity.
From a performance point of view, is better to have a single array controller per entity and share it between all views or does CoreData cache avoid memory waste?
© Stack Overflow or respective owner