0

我有一个可变数组。我想在 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);
4

1 回答 1

2

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

更改标签的框架

-(void)layoutSubviews
{

}

你的新细胞等级

于 2013-11-15T06:37:06.253 回答