Thanks Ozie.
I ended with the below snippet, but whenever i click the laodmore cell, i am getting duplicates of the existing batch items instead of loading next batch.
Also, pull to refresh action is removing the "loadmore" cell. what should i do to show the loadmore always?
tasksModel = [SCArrayOfObjectsModel modelWithTableView:self.tableView entityDefinition:taskdef filterPredicate:nil];
fetchedOptions = [SCCoreDataFetchOptions optionsWithSortKey:NO sortAscending:YES filterPredicate:compoundPredicate];
fetchedOptions.batchSize = 4;
[tasksModel setDataFetchOptions:fetchedOptions];
Edited by Balachandhar, 23 October 2013 - 01:53 AM.