我有一个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);
答案 0 :(得分:2)
您需要实现一个继承UITableViewCell的新类,并在单元格的contentView属性中添加标签。
更改
中的标签框架-(void)layoutSubviews
{
}
你的新Cell Class