gpt4 book ai didi

iphone - 如何为 uitableviewcell 设置边距

转载 作者:可可西里 更新时间:2023-11-01 04:07:40 24 4
gpt4 key购买 nike

如何在不创建全新自定义单元格的情况下以编程方式设置 UITableViewCell 的边距?

最佳答案

您需要继承 UITableViewCell 并覆盖 layoutSubviews 方法:

- (void)layoutSubviews {
[super layoutSubviews];
CGRect tmpFrame = self.imageView.frame;
tmpFrame.origin.x += 10;
self.imageView.frame = tmpFrame;

tmpFrame = self.textLabel.frame;
tmpFrame.origin.x += 10;
self.textLabel.frame = tmpFrame;

tmpFrame = self.detailTextLabel.frame;
tmpFrame.origin.x += 10;
self.detailTextLabel.frame = tmpFrame;
}

关于iphone - 如何为 uitableviewcell 设置边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8375767/

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