美文网首页
点击cell上的button如何获取tableView

点击cell上的button如何获取tableView

作者: 奋斗的小老鼠 | 来源:发表于2016-06-22 21:55 被阅读398次

这种方法主要用于工厂cell

- (IBAction)diggCountBut:(UIButton *)sender forEvent:(UIEvent *)event {
    //取到 button所在的cell的indexPath
    NSSet *touches =[event allTouches];
    UITouch *touch =[touches anyObject];
    UITableView *tableView = (UITableView *)[[[[sender superview] superview] superview] superview];
    CGPoint currentTouchPosition = [touch locationInView:tableView];
    NSIndexPath *indexPath= [tableView indexPathForRowAtPoint:currentTouchPosition];
    if (indexPath != nil){
     //利用通知发送到ViewController里面实现先做的事情
        [[NSNotificationCenter defaultCenter] postNotificationName:@"dig" object:sender userInfo:@{@"row":indexPath}];
    }
}

相关文章

网友评论

      本文标题: 点击cell上的button如何获取tableView

      本文链接:https://www.haomeiwen.com/subject/qtendttx.html