Skip to content

Instantly share code, notes, and snippets.

@McZonk
Created February 15, 2013 15:37
Show Gist options
  • Save McZonk/4961131 to your computer and use it in GitHub Desktop.
Save McZonk/4961131 to your computer and use it in GitHub Desktop.
- (UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath {
NotificationCell* cell = [tableView dequeueReusableCellWithIdentifier:NotificationCell.defaultReuseIdentifier forIndexPath:indexPath];
cell.notification = self.notifications[indexPath.row];
return cell;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment