Uitableviewcell

UITableViewCell

Guide

Custom Nib

Raywenderlich

SO

Custom Cell

Deprecation

textLabel iOS 3.0–14.0 Deprecated

cell.textLabel?.text = "Hello!"

apple dev | uitableviewcell textlabel

should be switched to

var content = cell.defaultContentConfiguration()
content.text = "Hello Kautilya"
content.secondaryText = "SK"
cell.contentConfiguration = content

medium | modern-configurations-for-cells-and-views-after-ios-14