【发布时间】:2010-05-19 16:51:41
【问题描述】:
我在编写 iPad 应用程序时使用了与在 iphone 中填充 UITableView 相同的技术。 标签栏控制器 >UINavigationController>myCustomTable 类型的 UITableViewController(从 NIB 加载)
MyCustomTableViewController NIB 和类文件实现了委托方法
@interface MyCustomTableViewController : UITableViewController <UITableViewDelegate, UITableViewDataSource> {
NSMutableArray *PDFList;
IBOutlet UITableView *PDFTable;
}
但是我的委托方法没有被调用。我该怎么办?
【问题讨论】:
-
fyi,我相信新的首选模式是在 @property 声明中指定 IBOutlet。 [例如@property(非原子,保留)IBOutlet UITableView *PDFTable]
-
我已经设置了这个属性
标签: iphone uitableview ipad