I am having trouble populating a subclassed UITableView.
All I am getting is a blank screen.
It is embedded into a UIView as such (UITableViewDelegate and UITableViewDataSource are set in the UITableViewController.h):
TableViewController *tableView = [[TableViewController alloc]
initWithStyle:UITableViewStyleGrouped];
tableView.view.frame = CGRectMake(0.0, 50.0, 320.0,
self.view.bounds.size.height);
tableView.tableView.dataSource = tableView;
tableView.tableView.delegate = tableView;
[self.view addSubview:tableView.view];
Then, in the UITableViewController I create a dummy Array to use as a data source:
library = [[NSArray alloc] initWithObjects:
@"Dummy 1",
@"Dummy 2",
@"Dummy 3",
@"Dummy 4", nil];
Then I do the required data source delegate methods as such:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 2;
}
- (NSInteger)tableView:(UITableView *)tableView
numberOfRowsInSection:(NSInteger)section
{
int rows;
if (section == 0) {
rows = [library count];
}
else if (section == 1) {
rows = 0;
}
return rows;
}
- (NSString *)tableView:(UITableView *)tableView
titleForHeaderInSection:(NSInteger)section {
if(section == 0) {
return [NSString stringWithFormat:@"Missions Library"];
}
else {
return [NSString stringWithFormat:@"Acknowledgements"];
}
}
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellId = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellId
forIndexPath:indexPath];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:CellId];
}
cell.textLabel.text = [library objectAtIndex:indexPath.row];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return cell;
}
I have read numerous table view tutorials, and I cannot figure out the problem. I get no error message, just a blank a table view screen.
What did I do wrong?
Couple of updates:
If I do not add the tableView's view as a subview but call it directly, I get the header and footers displayed, but not the cells.
cellForRowAtIndexPath method does not get called at all (I checked it with NSLog). This explains why I do not get the cells.
The whole exercise is to have a grouped table view that only occupies the lower part of the screen. But my approach might not be the best way to achieve this...
TableViewControllerand do it rather than adding tableView.view as its subview. That should be the issue here. If that is not possible, you need to subclass UITableView and not UITableViewController. – ACB Dec 25 '12 at 22:24