i see in IB i can set a predicate but i cant set a sort key or order... still have to do this by code
self.tableViewModel.sectionActions.didFetchItemsFromStore = ^(SCArrayOfItemsSection *itemsSection, NSMutableArray *items) { SCDataFetchOptions *fetchOptions = [SCDataFetchOptions optionsWithSortKey:@"timeStamp2" sortAscending:NO filterPredicate:nil]; [fetchOptions sortMutableArray:items]; };
plus is there any documentation on how to use the predicate in IB ???
Oz