I am writing a simple application in the iOS and I am getting the "UITableView dataSource must return a cell from tableView:cellForRowAtIndexPath:" error. I am trying to create some static row content.
My view controller is called "StartViewController". In the .xib file I have 3 UITableViewCell objects called "Section 0 Cell", "Section 1 Cell" and "Section 2 Cell". They are defined in the .h file as:
@interface StartViewController : UITableViewController
{
UITableViewCell *cell0;
UITableViewCell *cell1;
UITableViewCell *cell2;
}
@property (nonatomic, retain) IBOutlet UITableViewCell *cell0;
@property (nonatomic, retain) IBOutlet UITableViewCell *cell1;
@property (nonatomic, retain) IBOutlet UITableViewCell *cell2;
In the .m they have been synthesized. I can't post a picture of my interface builder as I don't have reputation 10 yet.
The cells are populated like this:
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"Processing section: %d, row: %d",[indexPath section], [indexPath row]);
if (cell0 == nil)
NSLog(@"cell0 is nil");
if (([indexPath section] == 0) && ([indexPath row] == 0))
return cell0;
if (([indexPath section] == 1) && ([indexPath row] == 0))
return cell1;
if (([indexPath section] == 2) && ([indexPath row] == 0))
return cell2;
return cell0;
}
I know the problem is the cell0 is nil but I can't figure out why.
Any help greatly appreciated.
Mike