我有一個WKInterfaceController,我添加了一個表如下:WKInterfaceTable的didSelectRowAtIndex不會被調用在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的任何協議聲明,也無法找到表上的任何委託屬性。
有什麼,我在這裏失蹤?