I have 3 different view controllers that present same data. Basically they are presented one after another. They are presenting same entity that is fetched with NSFetchedResultsController
.
I am now pondering since these are same NSFetchedResultsControllers
, should I just optimize things and create one, that I pass between controllers? Is there any downside to this, or even better is this good practice?
Also just passing dataset wouldn't suffice since i want controllers to react to changes to database.