0

我有一个带有 3 个按钮和一个表格视图的视图。当我按下 button1 时,button1 后面的数据应该被加载到 tableview 中。但是当我按下 button2 时,button2 后面的数据应该进入同一个 tableview。

我怎样才能做到这一点?

4

1 回答 1

4

只需dataSource将表格视图的 切换到符合UITableViewDataSource.

-(void)pressedButton1
{
    self.tableView.dataSource = self.button1DataSource;
    [self.tableView reloadData];
}


-(void)pressedButton2
{
    self.tableView.dataSource = self.button2Source;
    [self.tableView reloadData];
}
于 2012-10-07T19:10:29.010 回答