Skip to content

Instantly share code, notes, and snippets.

@joesus
Last active June 21, 2017 23:25
Show Gist options
  • Save joesus/edbe26f4cb03ab2c957172453226fa4c to your computer and use it in GitHub Desktop.
Save joesus/edbe26f4cb03ab2c957172453226fa4c to your computer and use it in GitHub Desktop.
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return kittens.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)
cell.textLabel?.text = kittens[indexPath.row].name
return cell
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment