UITableViewCell设置文本

时间:2010-10-20 05:11:00

标签: iphone

我正在创建示例hello world应用程序。代码如下。我怎样才能删除

c [cell setText:@“Hello World”]的

警告;在不推荐使用的代码中。

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

[cell setText:@"Hello World"];

3 个答案:

答案 0 :(得分:23)

设置单元格标签文本

cell.textLabel.text = @"Hello World";

和详细标签文字

cell.detailTextLabel.text = @"yourText";

答案 1 :(得分:3)

还有更多Objective-C方式:

[[cell textLabel] setText:@"Hello World"];

和详细标签文字:

[[cell detailTextLabel] setText:@"Hello World"];

答案 2 :(得分:3)

在Swift 3.0中它应该是

 cell.textLabel?.text = "Hello World"