设置标签高度

Set height of label

为了让我的应用程序响应更快,我想设置标签的高度以将其扩展到整个单元格。

现在是这样的:https://blazor.nl/uploads/get/cd6a93c852623266882afce5b480b804/IMG-0296

我该怎么做?

我的标签是cell.textLabel.text = [NSString stringWithFormat:@"%@", [self.alerts objectAtIndex:indexPath.row]];

谢谢

您需要设置行数0。

cell.textLabel.lineBreakMode = NSLineBreakByWordWrapping;
cell.textLabel.numberOfLines = 0;