@property (weak) IBOutlet UITableViewCell *cell1; @property (weak) IBOutlet UITableViewCell *cell2;
在Interface Builder中将每个单元连接到单元格.
当您只需要更改标签的文字时,可以使用
self.cell1.textLabel.text = @"New Text";
如果您需要更换整个标签,请使用
UILabel *newLabel = [[UILabel alloc] init]; self.cell2.textLabel = newLabel;