Brian,
I decided to try what the apple docs stated:
Code:
- (UITableViewCell *)tableView:(UITableView *)atableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
if([indexPath row] == 0) return appleCell;
if([indexPath row] == 1) return bananaCell;
return nil;
}
This worked fine for me, I wish I used this about 4 hours ago, I would not have wasted so much time. The only reason I hesitated to use it was because I thought I would not be able to use separate class files for each custom cell. I need to have to class files because they will be performing very unique tasks.
Thanks again for your help and patience. The good news is this solution is very clean and easy to manage.
Dana