如何在iphone的UITableview中设置单元格中的文本位置数组

时间:2013-11-15 06:22:32

标签: ios iphone uitableview ios5 nsmutablearray

我有一个Mutable数组。我想在UITableView中设置文本框架。

if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
cell.textLabel.text = [appDelegate.UnitTypeAry objectAtIndex:indexPath.row];
cell.textLabel.frame = CGRectMake(10, 10, 150, 40);

1 个答案:

答案 0 :(得分:2)

您需要实现一个继承UITableViewCell的新类,并在单元格的contentView属性中添加标签。

更改

中的标签框架
-(void)layoutSubviews
{

}

你的新Cell Class