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");
}
ただし、2 つのメソッドはどちらも呼び出されません。WKInterfaceTable のプロトコル宣言もテーブルのデリゲート プロパティも見つかりませんでした。
ここに欠けているものはありますか?