Last active
March 24, 2022 10:28
-
-
Save c1800054work/f6741ab647067a38db5a30c6d5fa7be0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { | |
| let cell: UITableViewCell = tableView.dequeueReusableCell(withIdentifier: "cell") ?? UITableViewCell(style: .value1, reuseIdentifier: "cell") | |
| cell.textLabel?.text = "left" | |
| cell.detailTextLabel?.text = "right" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment