Skip to content

Instantly share code, notes, and snippets.

@stevencurtis
Created July 8, 2020 09:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevencurtis/70a22f1f7d60ca4906ecedb020976ffd to your computer and use it in GitHub Desktop.
Save stevencurtis/70a22f1f7d60ca4906ecedb020976ffd to your computer and use it in GitHub Desktop.
lldbtableview
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
cell.textLabel?.text = people[indexPath.row].name
return cell
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment