Skip to content

Instantly share code, notes, and snippets.

@sgoodwin
Created November 19, 2012 19:48
Show Gist options
  • Save sgoodwin/4113332 to your computer and use it in GitHub Desktop.
Save sgoodwin/4113332 to your computer and use it in GitHub Desktop.
NSFetchedResultsController's switchless version.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
if<NSFetchedResultsSectionInfo> section = [self.resultsController sections][indexPath.section];
return [section numberOfObjects];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment