我在表格行中循环输出3个按钮,按下时会重定向到相关的详细信息。
问题是如何识别用户点击的按钮?我尝试了setAccessibilityLabel
和setValue forKey
,但都不起作用。
答案 0 :(得分:5)
您需要在 CustomRow 类中使用委托。
在 CustomRow.h 文件中:
@protocol CustomRowDelegate;
@interface CustomRow : NSObject
@property (weak, nonatomic) id <CustomRowDelegate> deleagte;
@property (assign, nonatomic) NSInteger index;
@property (weak, nonatomic) IBOutlet WKInterfaceButton *button;
@end
@protocol CustomRowDelegate <NSObject>
- (void)didSelectButton:(WKInterfaceButton *)button onCellWithIndex:(NSInteger)index;
@end
在 CustomRow.m 文件中,您需要在IB中添加连接到按钮的 IBAction 。然后处理这个动作:
- (IBAction)buttonAction {
[self.deleagte didSelectButton:self.button onCellWithIndex:self.index];
}
在配置行的方法中的 YourInterfaceController.m 类中:
- (void)configureRows {
NSArray *items = @[*anyArrayWithData*];
[self.tableView setNumberOfRows:items.count withRowType:@"Row"];
NSInteger rowCount = self.tableView.numberOfRows;
for (NSInteger i = 0; i < rowCount; i++) {
CustomRow* row = [self.tableView rowControllerAtIndex:i];
row.deleagte = self;
row.index = i;
}
}
现在您只需要实现委托方法:
- (void)didSelectButton:(WKInterfaceButton *)button onCellWithIndex:(NSInteger)index {
NSLog(@" button pressed on row at index: %d", index);
}
答案 1 :(得分:2)
如果按下某个按钮,WatchKit将调用以下方法:
- (void)table:(WKInterfaceTable *)table didSelectRowAtIndex:(NSInteger)rowIndex
使用rowIndex参数决定应该执行哪个操作。
答案 2 :(得分:0)
尝试将(发件人:UIButton)放入您的IBAction中,如下所示:
@IBAction func buttonPressed(sender:UIButton)