gpt4 book ai didi

iphone - 调整 UITableViewCell 文本标签的大小

转载 作者:行者123 更新时间:2023-12-03 18:29:50 25 4
gpt4 key购买 nike

我有一个 UITableViewCell,我想在右侧添加一个 View (除了附件 View 之外)。我尝试将 textLabel 的大小设置为窄几个像素,但它只是将其大小调整回来。

有没有办法调整textLabel的大小?

最佳答案

实际上,如果您创建 UITableViewCell 子类并重写layoutSubviews 方法,则可以调整它的大小:

- (void)layoutSubviews {
[super layoutSubviews]; //The default implementation of the layoutSubviews

CGRect textLabelFrame = self.textLabel.frame;
textLabelFrame.size.width = _textLabelMaxWidth;
self.textLabel.frame = textLabelFrame;
}

希望有帮助。

关于iphone - 调整 UITableViewCell 文本标签的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2008610/

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