Skip to content

Instantly share code, notes, and snippets.

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