I am trying to add 2 UITableView's to my UIViewController. I need to add different data to these tables.

This is how i added the 2 tables (this code was added to the ViewDidLoad method)

self.tableView2 = [[UITableView alloc] initWithFrame:CGRectMake(0,140,292,250) style:UITableViewStylePlain] ;
self.tableView2 .dataSource = self;
self.tableView2 .delegate = self;

Then the other table

self.tableView1 = [[UITableView alloc] initWithFrame:CGRectMake(0,0,320,100) style:UITableViewStylePlain] ;
self.tableView1 .dataSource = self;
self.tableView1 .delegate = self;

The number of sections defined as follows;

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    if (tableView==tableView1) {
        return 12;
    } 
    else { return 10; }
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath   *)indexPath
{
    // ...... more code here
    if (tableView == self.tableView1) {     
        if (cell == nil) {
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault   reuseIdentifier:CellIdentifier];        
        }
        cell.selectionStyle = UITableViewCellSelectionStyleNone;
        cell.textLabel.text=@"Cells .... ";
    } 
    else{
        // the remaining code here.. i am populating the cell as in the previous `IF` condition.
    }
}

The problem is that, i am getting only the first Table fill and not the 2nd table. Why is this? and how can i solve this ?

EDIT: I also added the following code, hope it makes a change

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    if (tableView==tableView1) {
        return 1;
    }
    else if (tableView==tableView2) { return 0; }
    else { return 0; }
}
link|improve this question

65% accept rate
How do u add the tableViews to the superview? – vikingosegundo Dec 25 '11 at 15:07
Well.. i did it according to the above code. and it gets displayed too. I can't populate it. Help required ! – Illep Dec 25 '11 at 15:08
are sure sure you return anything in the else part ? – user971401 Dec 25 '11 at 15:18
Yes i did, the same code inside the if condition, with different table names. – Illep Dec 25 '11 at 15:19
I added a new Code block to my question. hope it would help finding what went wrong – Illep Dec 25 '11 at 15:22
show 2 more comments
feedback

1 Answer

up vote 3 down vote accepted

Try to follow these steps in order to make the two table views having the same delegate and dataSource.

  1. Set the tag property of your table views, and #define constants on the two values. This makes the code consistent.

  2. In delegate and datasource methods you implement in your view controller subclass, test the tag property value against the constants you defined.

  3. Don't return 0 section for a table view, it won't display any cell at all.

So, for example :

#define TV_ONE 1
#define TV_TW0 2

// setting the tag property
self.tableView1 = [[UITableView alloc]
                   initWithFrame:CGRectMake(0,0,320,100)
                           style:UITableViewStylePlain];
self.tableView1.tag = TV_ONE;
self.tableView1.dataSource = self;
self.tableView1.delegate = self;
// the same for tableView2 using TV_TWO

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    if (tableView.tag == TV_ONE) {
        return 1;
    }
    else if (tableView.tag == TV_TWO) {
        return 1; // at least one section
    }
    else { return 0; }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.