码迷,mamicode.com
首页 > 其他好文 > 详细

在UITableView的 didSelectRowAtIndexPath中获取点击区域

时间:2014-08-04 21:06:17      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:des   io   for   问题   代码   c   table   ui   

项目中,要在UITableViewCell区分不同的点击区域,比如左边点击执行某个操作,右边点击执行另一个操作。原本我的方案是在cell的左边和右边各放一个透明的UIButton,点击两个button执行不同的操作,而controller中的didSelectRowAtIndexPath函数就设为空了。但是后来有个问题,就是可以同时用多个手指长按在不同的cell上,导致触发过个操作,而且cell的选中态也不好控制。

 

后来想到,UIview的触摸事件可以得到触摸的位置,那可不可以在cell的touch事件中得到位置,保存到一个变量中,然后didSelectRowAtIndexPath函数再根据这个变量执行不同的操作呢?

代码如下:

- (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event
{
    UITouch* touch = [[event allTouches] anyObject];
    CGPoint leftLocation = [touch locationInView: _bgViewLeft];
    CGPoint rightLocation = [touch locationInView: _bgViewRight];
    
    if ([_bgViewLeft pointInside:leftLocation withEvent:event])
    {
        self.touchLocation = eCellTouchLocationLeft;
        
        [super touchesBegan:touches withEvent:event];
    }
    else if ([_bgViewRight pointInside:rightLocation withEvent:event])
    {
        self.touchLocation = eCellTouchLocationRight;
        
        [super touchesBegan:touches withEvent:event];
    }
    else
    {
        self.touchLocation = eCellTouchLocationALL;
        
        [super touchesBegan: touches withEvent:event];
    }
}

 

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
    
    UPAboutMeTableViewCell *cell = (UPAboutMeTableViewCell *)[tableView cellForRowAtIndexPath:indexPath];
    
    if (cell.touchLocation == eCellTouchLocationLeft || cell.touchLocation == eCellTouchLocationALL)
    {
        [self aboutMeTableViewCellonDidClickInLeft:cell];
    }
    else
    {
        [self aboutMeTableViewCellonDidClickInRight:cell];
    }
}

在UITableView的 didSelectRowAtIndexPath中获取点击区域,布布扣,bubuko.com

在UITableView的 didSelectRowAtIndexPath中获取点击区域

标签:des   io   for   问题   代码   c   table   ui   

原文地址:http://www.cnblogs.com/codingsun/p/3890791.html

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