iOS UITableViewCell上 取消button点击延迟
这个现象在高亮状态时最为明显 连续触碰button 高亮状态会不显示。 处理方案是关掉scrollView的延迟
代码:
在创建tableView的地方加下面这行
_tableView.delaysContentTouches =NO;
for (UIView *currentViewin cell.subviews)
{
if([currentView isKindOfClass:[UIScrollViewclass]])
{
((UIScrollView *)currentView).delaysContentTouches =false;
break;
}
}
for (UIView *currentViewin _tableView.subviews)
{
if([currentView isKindOfClass:[UIScrollViewclass]])
{
((UIScrollView *)currentView).delaysContentTouches =false;
break;
}
}
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。