// 我在for 循环中创建表视图。循环一次后,需要调用 tableview 委托/数据源方法。但是这里的方法(委托/数据源)在完成循环后调用
//注意:我在基于页面控制器的滚动视图中显示所有表格
// 这是我的代码
for(int i=0; i < 10; i++)
{
table_obj[i] = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, 700, 500)];
table_obj[i].separatorStyle = UITableViewCellSeparatorStyleNone;
table_obj[i].separatorColor = [UIColor clearColor];
table_obj[i].delegate = self;
table_obj[i].dataSource = self;
table_obj[i].backgroundColor = [UIColor clearColor];
[scrollview addSubview:table_obj[i]];
[table_obj[i] reloadData];
}
//数据仅在第 10 个表中加载。并非在所有表格中