iPad application UITableView delegate methods are not getting called
Posted
by jAmi
on Stack Overflow
See other posts from Stack Overflow
or by jAmi
Published on 2010-05-19T16:51:41Z
Indexed on
2010/05/19
17:10 UTC
Read the original article
Hit count: 231
Hi, 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?
© Stack Overflow or respective owner