标签:
这个现象在高亮状态时最为明显 连续触碰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;
}
}
iOS UITableViewCell上 取消button点击延迟
标签:
原文地址:http://blog.csdn.net/liuxu0718/article/details/45505457