Skip to content

Instantly share code, notes, and snippets.

@xinmyname
Last active August 29, 2015 14:02
Show Gist options
  • Save xinmyname/55d2d1bcb2e68617b928 to your computer and use it in GitHub Desktop.
Save xinmyname/55d2d1bcb2e68617b928 to your computer and use it in GitHub Desktop.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
Account* account = [_accounts objectAtIndex:[indexPath row]];
UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:"AccountViewCell"];
[[cell textLabel] setText:account.name];
[[cell detailTextLabel] setText:account.email];
return cell;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment