我想知道如何在一个数据源的不同部分列出tableView中的数据。
我看到的所有例子都有数组=节数。我想要的是假设我有一个3d nsmutableArray。
If dArray.Id = 1 { //add to first section of UITableView }
else add to Section 2 of UITableView.
它可能是可行的,但我需要一个方向。
答案 0 :(得分: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;
}