gpt4 book ai didi

iphone - UITableView 中的 UILabel 设置大小

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:49:17 25 4
gpt4 key购买 nike

我想向 UITableViewCell 添加一个标签 subview 。我可以轻松地将框架原点和尺寸自己设置为特定值,但如何使用当前/默认单元格标签高度和位置?

  UILabel *labPerHour;

cell.textLabel.text = @"Rate";

labPerHour = [[UILabel alloc] init];

//labPerHour.frame = CGRectMake( 280, cell.textLabel.frame.origin.y, 80, cell.textLabel.frame.size.height );
labPerHour.frame = CGRectMake( 260, 7, 30, 30 );
labPerHour.text = @"$/hr";


[cell addSubview:labPerHour];

我希望被注释掉的行能够工作......或类似的东西。

有人可以帮忙吗?此代码当然是我的 cellForRowAtIndexPath 方法的一部分。

最佳答案

我不确定。可能会奏效。我以前没试过!!

CGRect theFrame = cell.textLabel.frame;
theFrame.origin.x = 280;
theFrame.size.width = 80;
labPerHour.frame = theFrame;

关于iphone - UITableView 中的 UILabel 设置大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11737199/

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