我是初学者iOS。我有一个tableview的单元格,有两个自定义视图:一个是项目单元格,另一个是单元格的编辑形式。当用户点击项目时,该项目将被隐藏,该单元格的编辑表格将在该项目上展开。
我如何解决这个问题。谢谢!
(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
MinimumCell *cell1 = (MinimumCell *)[tableView dequeueReusableCellWithIdentifier:@"MinimumCell"];
if (cell1 == nil) {
cell1 = (MinimumCell *)[MinimumCell cellFromNibNamed:@"MinimumCell"];
}
ExtendCell *cell2 = (ExtendCell *)[tableView dequeueReusableCellWithIdentifier:@"ExtendCell"];
if (cell2 == nil) {
cell2 = (ExtendCell *)[ExtendCell cellFromNibNamed:@"ExtendCell"];
}
if(isEditClicked && selectedIndexPath.section == indexPath.section && selectedIndexPath.row == indexPath.row ){
return cell2;
}
return cell1;
}
默认情况下,它将显示cell1,当用户点击该单元格时,cell1将替换为cell2(编辑表单)。它以扩展动画显示。
答案 0 :(得分:0)
单击行使用didSelectRowAtIndexPath以使用重新加载该单元格 [tableView reloadRowsAtIndexPaths:withRowAnimation:];
使用您的cellForRowAtIndex以及以下方法..
如下所示,您可以使用此方法在两个Cell视图之间切换。
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
// isEditCell is bool variable used to toggle between cell types.
isEditCell=[self shouldToggleView:[tableView cellForRowAtIndexPath:indexPath] ];
NSArray *ll=[[NSArray alloc]initWithObjects:indexPath, nil];
[tableView reloadRowsAtIndexPaths:ll withRowAnimation:UITableViewRowAnimationAutomatic];
}
-(BOOL )shouldToggleView:(UIView *)view {
while (view != nil) {
if ([view isKindOfClass:[TableViewEditCell class]]) {
return NO; //[tbl indexPathForCell:(TableViewEditCell *)view];
}else if ([view isKindOfClass:[TableViewCell class]]) {
return YES;//[tbl indexPathForCell:(TableViewCell *)view];
}
else {
view = [view superview];
}
}
return nil;
}