gpt4 book ai didi

iphone - 如何更改单元格的 textLabel 框架?

转载 作者:可可西里 更新时间:2023-11-01 03:01:39 33 4
gpt4 key购买 nike

我几乎尝试了所有方法,但似乎无法将 cell.textLabel 属性向下移动一点点。我在下面附上了一张截图,我已经尝试了几乎所有我能找到的东西。

我尝试直接更改 .frame 属性,尝试通过使用“- (void)tableView:(UITableView *)tableView willDisplayCell”方法进行修改。我还尝试分配自定义标签。我可以移动自定义标签,但它不会像原始 textLabel 那样分成单独的行。我只需要将图中的多行标签向下移动一点。

感谢任何帮助!

enter image description here

最佳答案

为您的 UITableViewCell 覆盖 layoutSubviews...

- (void)layoutSubviews {
[super layoutSubviews];

CGSize size = self.bounds.size;
CGRect frame = CGRectMake(4.0f, 4.0f, size.width, size.height);
self.textLabel.frame = frame;
self.textLabel.contentMode = UIViewContentModeScaleAspectFit;
}

或者您可以简单地创建自己的 UILabel 对象,并将其作为 subview 添加到 cell.contentView。

UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(4, 4, 30, 30)];
[cell.contentView addSubview:label];
[label release];

关于iphone - 如何更改单元格的 textLabel 框架?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4824973/

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