SCCoreDataFetchOptions

@interface SCCoreDataFetchOptions : SCDataFetchOptions {
  NSString *_orderAttributeName;
}

SCCoreDataFetchOptions further extends the SCDataFetchOptions subclass to control how data is fetched from SCCoreDataStore.

Note

For more information on fetch options, check out the SCDataFetchOptions documentation.
  • Undocumented

    Declaration

    Objective-C

    NSString *_orderAttributeName
  • The name of the attribute that will be used to determine the fetch order of the objects.

    Note

    This value is automatically set by the framework to the value in [SCEntityDefinition orderAttributeName], which makes you rarely need to set this value yourself.

    Declaration

    Objective-C

    @property (nonatomic, copy) NSString *orderAttributeName;