Created
June 28, 2022 12:26
-
-
Save paigeshin/9d2d32d48816e124296ab289403dff36 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
| // Register Cell | |
| tableView.register(UINib(nibName: "MyCell", bundle: nil), forCellReuseIdentifier: "MyCell") | |
| // Dequeue Cell | |
| let cell = tableView.dequeueReusableCell(withIdentifier: "MyCell") as! MyCell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment