I have a tableview with external delegate controller. Despite content table view array is well populated, and numberOfSectionsInTableView: and
-tableView: numberOfRowsInSection: are called,
but-tableView: cellForRowAtIndexPath: is not called.
Issued table view is set in that ways:
CompeticionViewController.h
....
@property (retain, nonatomic) IBOutlet UITableView *calendarioTable;
@property (strong, nonatomic) calendarioViewController *calendarioController;
....
calendarioTable = [[UITableView alloc] init];
calendarioController = [[calendarioViewController alloc] init];
[calendarioTable setDelegate:calendarioController];
[calendarioTable setDataSource:calendarioController];
calendarioController.calendarioArray = [[NSMutableArray alloc] init];
[calendarioController.calendarioArray addObjectsFromArray: self.calendarioarray];
[calendarioTable reloadData];
EDITED:
calendarioViewController.m
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [calendarioArray count];
}
Many thanks

[calendarioArray count]? – Inder Kumar Rathore May 17 '12 at 11:24NSLog(@"%@", calendarioArray);before returning the count? – Phillip Mills May 17 '12 at 11:25