Kevin J
Kevin J

Reputation: 11

what has replaced UITableViewCell setText now that setText is deprecated?

iPhone OS 3.1.2, older program uses UITableViewCell.text, which is now deprecated. Does anyone know what the new Setter is supposed to be?

Thanks!

Upvotes: 1

Views: 2101

Answers (1)

luvieere
luvieere

Reputation: 37504

The setter is: [cell.textLabel setText:@"Text"]

Upvotes: 1

Related Questions