Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Trying to get a sectioned PFQueryTableViewController to load from cache the same way a single section PFQueryTableViewController does and not having any success. Loading from network at first is fine but Im trying to avoid an API call every time the view appears

Here is my code, any help is appreciated;

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{

return self.sections.allKeys.count;
}


- (NSString *)wineTypeForSection:(NSInteger)section {
return [self.sectionToWineTypeMap objectForKey:[NSNumber numberWithInt:section]];
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

{
NSString *wineType = [self wineTypeForSection:section];
NSArray *rowIndecesInSection = [self.sections objectForKey:wineType]; return        rowIndecesInSection.count;
}

- (void)objectsDidLoad:(NSError *)error {
[super objectsDidLoad:error];

[self.sections removeAllObjects];
[self.sectionToWineTypeMap removeAllObjects];

NSInteger section = 0;
NSInteger rowIndex = 0;
for (PFObject *object in self.objects) {
    NSString *wineType = [object objectForKey:@"wineType"];
    NSMutableArray *objectsInSection = [self.sections objectForKey:wineType];
    if (!objectsInSection) {
        objectsInSection = [NSMutableArray array];

        [self.sectionToWineTypeMap setObject:wineType forKey:[NSNumber numberWithInt:section++]];
    }

    [objectsInSection addObject:[NSNumber numberWithInt:rowIndex++]];
    [self.sections setObject:objectsInSection forKey:wineType];
}
}

- (PFObject *)objectAtIndexPath:(NSIndexPath *)indexPath {
NSString *wineType = [self wineTypeForSection:indexPath.section];

NSArray *rowIndecesInSection = [self.sections objectForKey:wineType];

NSNumber *rowIndex = [rowIndecesInSection objectAtIndex:indexPath.row];
return [self.objects objectAtIndex:[rowIndex intValue]];
}

- (PFQuery *)queryForTable {
PFQuery *query = [PFQuery queryWithClassName:self.className];
query.maxCacheAge = 60 * 60 * 240000000;
query.cachePolicy = kPFCachePolicyCacheThenNetwork;

if (self.pullToRefreshEnabled) {
    query.cachePolicy = kPFCachePolicyNetworkOnly;
}

if (self.objects.count == 0) {
    query.cachePolicy = kPFCachePolicyCacheThenNetwork;
}

[query orderByAscending:@"orderIndex"];

return query;
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.