所以,我能够创建一个填充表字段的数组,但是在创建主字段下面出现的子文本时遇到了麻烦。我目前有:
- (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;
为了使小子视图工作?我做错了什么?
答案 0 :(得分:6)
请务必使用样式UITableViewCellStyleSubtitle