iPad application UITableView delegate methods are not getting called

ipad, iphone, uitableview

Solution

Found the solution....

in the tableView delegate method - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView

i was returning 0 and hence none of the delegate methods were being called.

Problem

I am using the same technique as i populate my UITableView in iphone while writing my iPad application. Tab Bar Controller >UINavigationController>UITableViewController of type myCustomTable(load From NIB) MyCustomTableViewController NIB and class file implements the delegate methods ``` @interface MyCustomTableViewController : UITableViewController <UITableViewDelegate, UITableViewDataSource> { NSMutableArray *PDFList; IBOutlet UITableView *PDFTable; } ``` but my delegate methods are not getting called. What do i do?

Original source