在我的tableView
表格中始終存在五行,當我點擊其中一行時,新的三行將出現在所點擊的行的下方。將具有自定義單元格的行插入到表格視圖中
如果前五行是默認的UITableViewCell
,,,我希望這三個單元格也來自另一個自定義單元格;所以主要的五個單元格將不同於次要的行(主單元格下面的三個單元格)。
這是我如何添加輔助行:
在tableView
委託didSelectRowAtIndexPath
:
NSInteger count = indexPath.row + 1;
NSMutableArray *newRows = [NSMutableArray array];//
self.expandedIndex = indexPath.row + 1;
self.tableExpanded = YES;
for(int i = 0; i < [self.numbers count]; i++)
{
NSIndexPath *path = [NSIndexPath indexPathForRow:count inSection:0];
[newRows addObject:path];
[self.myArray insertObject:[self.numbers objectAtIndex:i] atIndex:count];
count++;
}
[tableView insertRowsAtIndexPaths:newRows withRowAnimation:UITableViewRowAnimationTop];
加入該行,但我想他們是從,我想創建自定義單元格,,,任何想法