gpt4 book ai didi

ios - 在 Xcode 中左对齐部分文本,右对齐部分文本

转载 作者:行者123 更新时间:2023-11-28 19:13:17 25 4
gpt4 key购买 nike

我正在用营养成分填充 UITableView 表。每行包括营养素的绝对量以及每日摄入量的百分比。我想将金额对齐到每行的左侧,将百分比每日值对齐到右侧,以便信息看起来更整洁,并且所有值都对齐。有什么办法可以做到这一点?谢谢!

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath     *)indexPath
{

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"NutritionCell" forIndexPath:indexPath];


if(!cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"NutritionCell"];
}


CGRect oldFrame = cell.frame;
cell.textLabel.frame = CGRectMake(oldFrame.origin.x, oldFrame.origin.y, tableView.frame.size.width/2, oldFrame.size.height);
cell.detailTextLabel.frame = CGRectMake(oldFrame.origin.x + tableView.frame.size.width/2, oldFrame.origin.y, tableView.frame.size.width/2, oldFrame.size.height);

cell.textLabel.text = [factamount objectAtIndex:indexPath.row];
cell.detailTextLabel.text = [percentDV objectAtIndex:indexPath.row];
return cell;

}

最佳答案

您也可以使用 UITableViewCellStyleValue1 执行此操作。这会自动向单元格添加 2 个标签:

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellID = @"CELLID";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
if(!cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:cellID];
}

cell.textLabel.text = @"AMOUNT TEXT";
cell.detailTextLabel.text = @"PERCENT TEXT";
return cell;
}

关于ios - 在 Xcode 中左对齐部分文本,右对齐部分文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13783470/

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