gpt4 book ai didi

iphone - UITableViewCell 中的 UILabel 溢出

转载 作者:行者123 更新时间:2023-11-28 18:25:31 25 4
gpt4 key购买 nike

我在 UITableViewCell 中有一个 UILabel,我试图调整高度,但是当高度大于单元格高度时,它会溢出到它下面的下一个单元格。我怎样才能避免这种情况?我将其添加到我的 contentView 中:

 [self.contentView addSubview:self.commentsText_];

最佳答案

如果你想 overflow hidden 。

self.contentView.clipsToBounds = YES;

或者你可能想通过覆盖来布局

- (void)setNeedsLayout
{
[super setNeedsLayout];
self.commentsText_.frame = .... // layout your label
}

关于iphone - UITableViewCell 中的 UILabel 溢出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10459884/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com