Skip to content

Instantly share code, notes, and snippets.

@acecilia
Last active June 11, 2018 20:21
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 acecilia/944b5c3d8fcacd1ff5430e483088f3d3 to your computer and use it in GitHub Desktop.
Save acecilia/944b5c3d8fcacd1ff5430e483088f3d3 to your computer and use it in GitHub Desktop.
func tableView(_ tableView: UITableView,
cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(
withIdentifier: "Cell", for: indexPath)
cell.textLabel?.text = "Title"
return cell
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment