对齐UITableViewCell上的数据?

时间:2010-11-22 06:13:48

标签: iphone

我想在UITableViewCell上对齐数据

我的表显示图像。 在那个价格之后....空间............年.....空间.........模型.....空间。 在一条线上。在tableviewcell中。

3 个答案:

答案 0 :(得分:0)

在自定义单元格中为每个子视图设置框架属性。

答案 1 :(得分:0)

cell.textLabel.text=[NSString stringWithFormat:@"year: %@         price: %@",[yearList objectAtIndex:indexPath.row],[priceList objectAtIndex:indexPath.row]];

答案 2 :(得分:0)

cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
//  CGRect frame;
//  frame.origin.x=10;
//  frame.origin.y=5;
//  frame.size.height=20;
//  frame.size.width=100;
//  frame.origin.x+=90;
//  
//  priceLabel=[[UILabel alloc]initWithFrame:frame];
//  priceLabel.textColor = [UIColor orangeColor];
//  priceLabel.tag=PriceTag;
//  [cell.contentView addSubview:priceLabel];
//  [priceLabel release];

//  frame.origin.x+50;
//  yearLabel=[[UILabel alloc]initWithFrame:frame];
//  yearLabel.tag=YearTag;
//  [cell.contentView addSubview:yearLabel];
//  [yearLabel release];

//}
// UILabel *priceLabel1=(UILabel*)[cell.contentView viewWithTag:PriceTag];
// priceLabel1.text=[priceList objectAtIndex:indexPath.row];