Skip to content

Instantly share code, notes, and snippets.

@gonzalezreal
Created November 3, 2012 14:28
Show Gist options
  • Save gonzalezreal/4007527 to your computer and use it in GitHub Desktop.
Save gonzalezreal/4007527 to your computer and use it in GitHub Desktop.
Utilizando NSFetchedResultsController
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return [[self.fetchedResultsController sections] count];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [[[self.fetchedResultsController sections] objectAtIndex:section] numberOfObjects];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment