UITableViewCell 中的Button事件向上寻找当前Cell

// self.tableView 就是 UITableView对象实例   
 CGRect buttonRect = button.frame;
    for (UITableViewCell *cell in [self.tableView visibleCells]) {
        // 判断两个区域是否相交
        if (CGRectIntersectsRect(buttonRect, cell.frame)) {
            NSLog(@"%@", cell);
        }
    }

你可能感兴趣的:(UITableViewCell 中的Button事件向上寻找当前Cell)