Last active
March 24, 2022 10:26
-
-
Save c1800054work/17337d8adbe8f63d4db5892e7e4a1319 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: .subtitle, reuseIdentifier: "cell") | |
| cell.imageView?.image = UIImage(named: "2") | |
| cell.textLabel?.text = "title" | |
| cell.detailTextLabel?.text = "subTitle" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment