ios - NSFetchedResultsController not refreshing when updated from child context -
i feel i've run issue before , plan on digging old code, has got solution this? for reason, isn't triggering nsfetchedresultscontroller pointed @ parent context update: [[nsnotificationcenter defaultcenter] addobserverforname:nsmanagedobjectcontextdidsavenotification object:nil queue:nil usingblock:^(nsnotification *note) { if ([[note object] iskindofclass:[nsmanagedobjectcontext class]] && [[note object] parentcontext]) { nsmanagedobjectcontext *parentcontext=[[note object] parentcontext]; [parentcontext performblockandwait:^ { [parentcontext mergechangesfromcontextdidsavenotification:note]; } ]; } } ]; basically, if make bunch of changes child nsmanagedobjectcontext , save context, triggers this. however, data shown nsfetchedresultscontroller prior context merge. if quit app , restart it, shows correct data. kind of annoying, missing , can't remember what. i tried this: https://github.com/f