UITableViewにregisterというメソッドが生えてることに気づいたので
試しに使ってみた
・API
iOS5.0から生えてた
https://developer.apple.com/documentation/uikit/uitableview/1614937-register
・通常
let cell = _tableView.dequeueReusableCell(withIdentifier: cellName) ?? UITableViewCell(style: .subtitle, reuseIdentifier: cellName)
・registerを使う
tableView.register(UITableViewCell.self, forCellReuseIdentifier: CELL_NAME) let cell = _tableView.dequeueReusableCell(withIdentifier: cellName)!
参考
https://qiita.com/abouch/items/3617ce37c4dd86932365
関連記事:
- RxSwiftを使ってUISearchBarに入力した内容をUITableViewに表示する
- RxSwiftでdidSelectRowAtを使う
- iOS 15 Programming Fundamentals with Swiftの9章と10章を読んだので不明点をまとめる