Read Time:3 Second
UITableViewCell setText deprecated
UITableViewCell *cell = ...
...
cell.text = ...
to
cell.textLabel.text = @"test";
Related
chrislee.kr – Personal blog as bookshelves
UITableViewCell setText deprecated
UITableViewCell *cell = ...
...
cell.text = ...
to
cell.textLabel.text = @"test";