Skip to content

Instantly share code, notes, and snippets.

@hasanalisiseci
Created February 20, 2020 18:12
Show Gist options
  • Save hasanalisiseci/0c6c72e2d9156e73996657b481c0d9b5 to your computer and use it in GitHub Desktop.
Save hasanalisiseci/0c6c72e2d9156e73996657b481c0d9b5 to your computer and use it in GitHub Desktop.
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = UITableViewCell()
cell.textLabel?.text = fruits[indexPath.row]
return cell
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment