UITableView问题中的iphone详细文本

时间:2010-05-09 23:50:16

标签: iphone

所以,我能够创建一个填充表字段的数组,但是在创建主字段下面出现的子文本时遇到了麻烦。我目前有:

- (void)viewDidLoad {
[super viewDidLoad];
listOfForms = [[NSMutableArray alloc] init];
[listOfForms addObject:@"First Form"];
 }

然后:

    NSString *cellValue = [listOfDAForms objectAtIndex:indexPath.row];
cell.textLabel.text = cellValue;

在cellForRowAtIndexPath部分中。为什么我不能添加:

listOfNames = [[NSMutableArray alloc] init];
[listOfNames addObject:@"Named Form"];

NSString *cellSubscript = [listOfNames objectAtIndex:indexPath.row];
cell.detailTextLabel.text = cellSubscript;

为了使小子视图工作?我做错了什么?

1 个答案:

答案 0 :(得分:6)

请务必使用样式UITableViewCellStyleSubtitle

初始化您的单元格