Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding data to 2 Sections of UITableView from SINGLE nsmutablearray

I wanted to know how to list data in tableView in different sections BUT from a single datasource.

All examples i saw had number of arrays = number of sections. What i want is suppose I have a 3d nsmutableArray.

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

Its probably dooable, but i jus need a direction.

like image 511
user134611 Avatar asked Dec 05 '25 17:12

user134611


1 Answers

Yeah it is possible to do it.

You can have a single NSMutableArray (resultArray) with the entire content in it.

Then in the cellForRowAtIndexPath method you can do it this way

- (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)];
    }
}

and in 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;
}
like image 93
Sneha Avatar answered Dec 07 '25 13:12

Sneha