Why doesn't my UITableViewCell have a textLabel property?
The textLabel
property is marked readonly. You have to set textLabel.text
instead:
cell.textLabel.text = @"some Text";
The textLabel
property is marked readonly. You have to set textLabel.text
instead:
cell.textLabel.text = @"some Text";