我是 Objective C 的新手,我对正在处理的表非常迷茫。我想要的是,当我单击单元格时,它会展开并向我显示一个子视图,它是另一个标签,然后当我再次单击它时,它会隐藏子视图并显示原始文本。目前这一切都发生了可怕的错误,我真的不知道我应该如何编码。前提是我有一个问题可以扩展以揭示答案,我认为这很容易......这是我的代码:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
// Deselect cell
[tableView deselectRowAtIndexPath:indexPath animated:TRUE];
// create the subview and apply it to the current cell selected
CGRect frame = CGRectMake(0, 0, 160, 50);
UILabel *label = [[UILabel alloc] initWithFrame:frame];
label.text = @"OH";
[cell.contentView addSubview:label];
// Toggle 'selected' state
BOOL isSelected = ![self cellIsSelected:indexPath];
// Store cell 'selected' state keyed on indexPath
NSNumber *selectedIndex = [NSNumber numberWithBool:isSelected];
[selectedIndexes setObject:selectedIndex forKey:indexPath];
// update the view that holds the table
[firstView beginUpdates];
[firstView endUpdates];
//Change cell contents
[tableView reloadRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationNone];
}
如果有人可以提供一些帮助,甚至更好地更改代码以向我展示我应该如何去做,那将是非常棒的,因为我不知所措,需要在接下来的几个小时内完成这项工作!哎呀。
谢谢!