我想在 UIViewController 中以编程方式创建 2 个 UITableView。对于 *firstTableDatas 和 *secondTableDatas 的数据,我有 2 个 NSMutableArray。我可以设法以编程方式创建一个 UITableView,但是当它变为 2 时,我很困惑代表的 2 个 UITableView 的返回值是什么:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
}
和
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
}
以及如何在 2 个单独的 UITableView 中加载数据。
提前致谢。