I give in. I must be missing something simple and primary here!
Question
- Why do you pass an identifier to
UITableView.registerClass()? - What is
identifierused for? - What breaks when you toss in garbage for the
identifier?
Source of Question
Ref: func registerClass(_ cellClass: AnyClass?, forCellReuseIdentifier identifier: String)
Example: tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "cell");
Reference
