iOS:在 tableViewCell 底部调用 willSelectRowAtIndexPath

发布于 2024-11-09 10:18:49 字数 261 浏览 0 评论 0原文

我有一个自定义 UITableViewCell,上面有 2 个按钮和一个标签。问题是,仅当我单击单元格底部正上方时,才会调用 willSelectRowAtIndexPath。

我将 UITableViewCell 的 User Interaction Enabled 设置为 true。这使得我的单元格中的按钮可以单击。

如果我将其设置为 false,当我单击单元格中的任意位置但按钮不再工作时,我将调用 SelectRowAtIndexPath。

请帮忙!

I have a custom UITableViewCell that has 2 buttons and a label on it. The problem is that willSelectRowAtIndexPath only gets called when I click right above the bottom of a cell.

I set User Interaction Enabled to true for the UITableViewCell. This allows the buttons I have in my cell to be clickable.

If I set it to false, I willSelectRowAtIndexPath gets called when I click anywhere in the cell but the buttons no longer work.

Please help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼泪都笑了 2024-11-16 10:18:49

我不确定该按钮在启用时是否可以自动发生。但是我们可以让单元格知道它已被选中。

- (IBAction)respondToClick:(id)sender {
    CustomTableViewCell *customCell = (CustomTableViewCell*)sender.superview;

    // You can signal the cell to select itself (will not send the delegate message)
    [customCell setSelected:YES animated:NO];

    // Alternately this can be done but I don't recommend
    NSIndexPath *indexPath = [myTableView indexPathForCell:customCell];
    if ( myTableView.delegate && [myTableView.delegate respondsToSelector:@selector(tableView:willSelectRowAtIndexPath:)] ) {
        [myTableView.delegate tableView:myTableView willSelectRowAtIndexPath:indexPath];
    }
}

I am not sure if the button can let that happen automatically when enabled. However we can let the cell know that it was selected.

- (IBAction)respondToClick:(id)sender {
    CustomTableViewCell *customCell = (CustomTableViewCell*)sender.superview;

    // You can signal the cell to select itself (will not send the delegate message)
    [customCell setSelected:YES animated:NO];

    // Alternately this can be done but I don't recommend
    NSIndexPath *indexPath = [myTableView indexPathForCell:customCell];
    if ( myTableView.delegate && [myTableView.delegate respondsToSelector:@selector(tableView:willSelectRowAtIndexPath:)] ) {
        [myTableView.delegate tableView:myTableView willSelectRowAtIndexPath:indexPath];
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文