当我单击 tableview 想要重新加载的特定名称并从所选名称添加更多单元格时,我在 tableview 中有一些名称。然后再次单击子单元格并加载更多单元格。我怎么能做到这一点任何人帮助我
问问题
285 次
1 回答
0
以下是当您从表格中选择一个单元格时调用的委托
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
NSLog(@"*****you have selected a cell ********* ");
NSLog(@"selected cell row = %i and section = %i",indexPath.row,indexPath.section);
// Add more data to the array which is populating the table so that to add more cells
[your_Table reloadData]; // This will reload your table with new data which you added to your Array
}
于 2012-08-08T06:28:48.517 回答