3

我想知道如何在不同部分的 tableView 中列出数据,但来自单个数据源。

我看到的所有示例都有数组数 = 部分数。我想要的是假设我有一个 3d nsmutableArray。

If dArray.Id = 1 { //add to first section of UITableView }
else add to Section 2 of UITableView.

它可能是可行的,但我只需要一个方向。

4

1 回答 1

4

是的,有可能做到这一点。

您可以在其中包含一个NSMutableArray( resultArray) 的全部内容。

然后在cellForRowAtIndexPath方法中你可以这样做

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    if(indexPath.section == 0)
    {
        cell.text=[resultArray objectAtIndex:indexPath.row];
    }
    else if(indexPath.section == 1)
    {
        cell.text=[resultArray objectAtIndex:(indexPath.row+5)];
    }
    else if(indexPath.section == 2)
    {
         cell.text=[resultArray objectAtIndex:(indexPath.row+11)];
    }
}

并且在numberOfRowsInSection

- (NSInteger)tableView:(UITableView *)tableView1 numberOfRowsInSection:(NSInteger)section {

    NSInteger count;
    if(section == 0)
    {
        count=6;
    }
    else if(section == 1)
    {
        count=6;
    }
    else if(section == 2)
    {
        count=4;
    }
    return count;
}
于 2009-09-29T09:26:51.147 回答