IPad app UITableView delegate methods not getting
I am using the same technique as I populate my UITableView in iphone when writing my iPad app. Tab bar controller> UINavigationController> UITableViewController of type myCustomTable (loaded from NIB)
MyCustomTableViewController NIB and class file implement delegation methods
@interface MyCustomTableViewController : UITableViewController <UITableViewDelegate, UITableViewDataSource> {
NSMutableArray *PDFList;
IBOutlet UITableView *PDFTable;
}
but my delegate methods are not getting called. What am I doing?
+2
a source to share
3 answers