gpt4 book ai didi

ios - UIButton 和 UITextField 将阻止 UITableViewCell 被滑动删除

转载 作者:可可西里 更新时间:2023-11-01 06:06:58 30 4
gpt4 key购买 nike

UITableViewCell中有UIButtonUITextField。删除按钮enter image description here当我滑过 UIButtonUITextField 时不会出现。我确实在SO和google上搜索答案,有一个类似的问题Swipe left gestures over UITextField , 但没有正确答案。

我在 iOS 8 上遇到了这个问题。

编辑 设置 self.tableView.panGestureRecognizer.delaysTouchesBegan = YES; 后,它非常适合带有 UITextField 的单元格。但是当我从 UIButton 开始拖动时,显示删除按钮并触发 UIButton,我不希望 UIButton 被触发。

最佳答案

我不知道如何首先阻止 UIButton 触发,但是 UITableViewCell 具有属性 showingDeleteConfirmation 可以用于检查是否显示删除按钮。我所做的是在 TouchUpInsideUIButton 操作中检查它,就像这样

- (void)buttonPressed:(id)sender
{
if (!self.showingDeleteConfirmation) {
// Handle button press
}
}

(此示例来自 UITableViewCell 子类,因此它使用 self 来访问该属性。)

这个,除了

tableView.panGestureRecognizer.delaysTouchesBegan = YES;

你已经拥有的,可以正确识别滑动并且不执行按钮操作。

关于ios - UIButton 和 UITextField 将阻止 UITableViewCell 被滑动删除,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26436643/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com