作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
如何禁用 UITableview
单元格的 UserInteraction
但不是该单元格上的自定义按钮..
我正在使用 :
创建一个按钮 UIButton *dayButton = [UIButton buttonWithType:UIButtonTypeCustom];
[dayButton setFrame:CGRectMake(201, 0, 30, 35)];
[dayButton addTarget:self action:@selector(selectDayView) forControlEvents:UIControlEventTouchUpInside];
[dayButton setBackgroundImage:[UIImage imageNamed:@"86-camera.png"] forState:UIControlStateNormal];
dayButton.userInteractionEnabled=YES;
[cell addSubview:dayButton];
然后我设置
cell.userInteractionEnabled=NO;
如何获取dayButtonAction
?
最佳答案
不要禁用用户与整个单元格的交互。设置 cell.selectionStyle = UITableViewCellSelectionStyleNone
以防止单元格选择。这样用户仍然可以与按钮进行交互。
关于iphone - 如何禁用 UITableview 单元格的 UserInteraction 但不禁用单元格上的自定义按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17522953/
我是一名优秀的程序员,十分优秀!