Contents

shouldRefreshRefetchedObjects

A Boolean value that indicates whether the property values of fetched objects will be updated with the current values in the persistent store.

Declaration

var shouldRefreshRefetchedObjects: Bool { get set }

Discussion

This value is true if the property values of fetched objects will be updated with the current values in the persistent store; otherwise, it is false.

By default when you fetch objects, they maintain their current property values, even if the values in the persistent store have changed. Invoking this method with the parameter true means that when the fetch is executed, the property values of fetched objects are updated with the current values in the persistent store. This is a more convenient way to ensure that managed object property values are consistent with the store than by using refresh(_:mergeChanges:) (NSManagedObjetContext) for multiple objects in turn.

See Also

Managing How Results Are Returned