iPad application UITableView delegate methods are not getting called
- by jAmi
Hi, I am using the same technique as i populate my UITableView in iphone while writing my iPad application.
Tab Bar Controller UINavigationControllerUITableViewController 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?