我的标签问题超出了细胞本身。标签是以编程方式创建的,因此没有Nib。 我认为正确的方法是在细胞和标签之间加以限制,但我不知道如何。 这是一个代码段
UITableViewCell CreateMessageCell()
{
var cell = new UITableViewCell (UITableViewCellStyle.Subtitle, null);
cell.SelectionStyle = UITableViewCellSelectionStyle.None;
cell.TextLabel.Font = detailFont;
cell.TextLabel.Lines = 0;
cell.TextLabel.TextColor = contentColor;
cell.TextLabel.Text = viewModel.Body;
return cell;
}
这是一张展示问题的图片 Label Extending Cell