码迷,mamicode.com
首页 > 移动开发 > 详细

iOS UITableViewCell上 取消button点击延迟

时间:2015-05-05 22:06:21      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

这个现象在高亮状态时最为明显 连续触碰button 高亮状态会不显示。 处理方案是关掉scrollView的延迟

代码: 

      在创建tableView的地方加下面这行

  _tableView.delaysContentTouches =NO;

      
     在tableView代理方法 cellForRow 里加入下面代码
     

 for (UIView *currentViewin cell.subviews)

    {

       if([currentView isKindOfClass:[UIScrollViewclass]])

        {

            ((UIScrollView *)currentView).delaysContentTouches =false;

           break;

        }

    }

     这段代码解决的条件是iOS7。  如果是iOS环境下代码为
    

 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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!