我在故事板中的原型单元格上有一个自定义附件视图(UIButton)。单击该按钮时,不会调用轻触的附件按钮的委托方法。如果我使用标准的披露按钮,它被称为罚款。我假设我错过了某个地方。谁知道在哪里?
答案 0 :(得分:2)
猜1:
你没有一个“自定义配件视图”,你有一个UIButton
放置在配件的位置。这不会触发代理配件的按钮,因为它不是真正的配件。
猜猜2:
你确实有一个真正的配件视图,但它永远不会得到“点击”事件,因为你有一个UIButton
,它正在吃用户交互但没有触发一个动作。在这种情况下,请尝试添加简单的UIView
。
除此之外,我还需要更多信息。
答案 1 :(得分:2)
附件委托方法的Apple文档说
代表通常通过显示与所选行相关的新视图来响应公开按钮(附件视图)上的点击。在indexPath处为行设置附件视图时,不会调用此方法。
因此不会调用自定义附件视图。这是一种标准行为。
答案 2 :(得分:1)
我最终使用自定义表格单元的协议解决了这个问题。
CustomAccessoryTableCellDelegate.h
@protocol CustomAccessoryTableCellDelegate <NSObject>
@required
- (void) accessoryButtonTappedForCell: (UITableViewCell *) cell;
@end
CustomAccessoryViewTableCell.h
@interface CustomAccessoryViewTableCell : UITableViewCell
/** The custom accessory delegate. */
@property (nonatomic, weak) id<CustomAccessoryTableCellDelegate> delegate;
@end
CustomAccessoryViewTableCell.m
- (IBAction) buttonAction:(id)sender{
if ([self.delegate respondsToSelector:@selector(accessoryButtonTappedForCell:)]) {
[self.delegate accessoryButtonTappedForCell:self];
}
}
内部表视图控制器
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath{
CustomAccessoryViewTableCell *cell = [tableView
dequeueReusableCellWithIdentifier:@"MyCustomCell"];
cell.label.text = @"Some Name";
cell.delegate = self;
return cell;
}
#pragma mark - Custom Accessory View Delegate
- (void) accessoryButtonTappedForCell:(UITableViewCell *)cell{
[self tableView:self.writerTable
accessoryButtonTappedForRowWithIndexPath: [self.writerTable
indexPathForCell:cell]];
}