gpt4 book ai didi

iphone - 将数据从 SINGLE nsmutablearray 添加到 UITableView 的 2 个部分

转载 作者:行者123 更新时间:2023-12-03 19:43:07 24 4
gpt4 key购买 nike

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

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

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

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

最佳答案

是的,这是可以做到的。

您可以拥有一个包含全部内容的 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;
}

关于iphone - 将数据从 SINGLE nsmutablearray 添加到 UITableView 的 2 个部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1486696/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com