Skip to content

Instantly share code, notes, and snippets.

@gonzalezreal
Created November 3, 2012 14:29
Show Gist options
  • Save gonzalezreal/4007531 to your computer and use it in GitHub Desktop.
Save gonzalezreal/4007531 to your computer and use it in GitHub Desktop.
Utilizando NSFetchedResultsController
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = ...;
TGRTweet *tweet = [self.fetchedResultsController objectAtIndexPath:indexPath];
// Configuramos la celda usando los atributos del tweet
// ...
return cell;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment