gpt4 book ai didi

ios - 如果禁用子按钮,则停止将事件传递给父按钮

转载 作者:行者123 更新时间:2023-11-29 12:25:42 25 4
gpt4 key购买 nike

我在 UITableViewCell 上有一个 UIButton,如果我设置

button.enabled = false;

...然后对该按钮的后续点击会触发对 UITableViewCell 的点击。

那么,如果按钮被禁用,那么如何确保点击它不会触发表格单元格点击?

最佳答案

你可以这样做

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];

if(!cell.btn.enable)
return;
}

关于ios - 如果禁用子按钮,则停止将事件传递给父按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29206967/

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