我有一个WKInterfaceController并添加了一个表格,如下所示:
// .h
@interface InterfaceController : WKInterfaceController
@property (weak, nonatomic) IBOutlet WKInterfaceTable *table;
@end
// .m
- (void)table:(WKInterfaceTable *)table didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
NSLog(@"did select");
}
- (void)table:(WKInterfaceTable *)table
didSelectRowAtIndex:(NSInteger)rowIndex{
NSLog(@"did select new");
}
然而,这两种方法都没有被调用。我找不到 WKInterfaceTable 的任何协议声明,也找不到表上的任何委托属性。
我在这里缺少什么吗?