Last active
October 9, 2020 23:50
-
-
Save SlappyAUS/b8f826f31051a24f665f9498282681e2 to your computer and use it in GitHub Desktop.
Register Custom XIB Cell with TableView #ui
This file contains 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
override func viewDidLoad() { | |
super.viewDidLoad() | |
// Register XIB for custom cell | |
tableView.register(UINib(nibName: K.cellNibName, bundle: nil), forCellReuseIdentifier: K.cellIdentifier) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment