gpt4 book ai didi

iphone - 如何在UITableViewCellStyleSubtitle的cell.detailText.label中添加两个标签?

转载 作者:行者123 更新时间:2023-12-03 20:21:06 25 4
gpt4 key购买 nike

有没有办法可以将两个标签添加到 UITableViewCellStyleSubtitle 的 cell.detailText.label 中。我希望其中一个左对齐,另一个右对齐。

谢谢

最佳答案

您无法将标签添加到detailLabel,但可以将它们添加到单元格的contentView。

- (UITableViewCell *)tableView:(UITableView *)atableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell = [atableView dequeueReusableCellWithIdentifier:@"cell"];
if (!cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"cell"];

UILabel *labelOne = [[UILabel alloc]initWithFrame:CGRectMake(20, 22, 140, 20)];
UILabel *labelTwo = [[UILabel alloc]initWithFrame:CGRectMake(160, 22, 140, 20)];

labelOne.text = @"Left";
labelTwo.textAlignment = UITextAlignmentRight;
labelTwo.text = @"Right";

[cell.contentView addSubview:labelOne];
[cell.contentView addSubview:labelTwo];
}


return cell;

}

关于iphone - 如何在UITableViewCellStyleSubtitle的cell.detailText.label中添加两个标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6802543/

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