我有一个包含 3 个表的视图
1-第一
2 秒
三分之三
我已经尝试过UISplitView
视图,但正如许多帖子所说,它只支持 2 个视图,所以我决定移到 3 个表选择
我想根据用户点击第一个表来更改第二个表的数据源
这是我的代码:首先
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView deselectRowAtIndexPath:indexPath animated:YES];
items = [NSMutableArray arrayWithObjects:@"test",@"20",@"30",@"40",@"5",@"6",@"6",@"8",@"9",@"10",@"11",@"12",nil];
SecondViewController *s=[[SecondViewController alloc]init];
[s setitems:items];
}
在第二
-(void) setitems :(NSMutableArray *)datasource
{
items=datasource;
[self.tableView reloadData];
}
问题是numberOfRowsInSection
第二张桌子没有被解雇?我想知道动态更改表数据源的最佳方法?