2

我想在 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 中加载数据。

提前致谢。

4

3 回答 3

4

采用

if(tableView ==Firsttable)
{
...
}
else
{
...
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
...
}
于 2012-05-24T10:29:40.243 回答
2

您可以检查如下:

if(tableView ==firstTableDatas)
{
    //Code related to First Table
}
else if(tableView ==secondTableDatas)
{
    //Code related to Second Table
}

它将在 UITableViewDelegate 方法中工作。

快乐编码。

于 2012-05-24T10:46:58.860 回答
1

给 tableView 和标签的基础上的差异标签做所需的功能

例如:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
      if(tableView.tag==1)
      {
          return 100;
      }
      else if(tableView.tag==2)
      {
           return 50;
      }
      return 40;
}
于 2012-05-24T10:36:12.783 回答