0

下面是我所拥有的。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"MainCell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    }

    UIButton *myButton = (UIButton *)[cell viewWithTag:999999];
    // setting image to button...
    return cell;    
}

在 IB 中,我已为此按钮设置了操作...

- (IBAction)clickedCellAction:(id)sender {

    UITableViewCell *clickedCell = (UITableViewCell *)[[sender superview] superview];
    NSIndexPath *clickedButtonPath = [mainTableView indexPathForCell:clickedCell];

    NSLog(@"row==%d", clickedButtonPath.row);
}

现在,当我运行它时,我总是进入row==0iOS 7。

但是它在 iOS6 中给出了正确的 row==。

知道为什么会这样吗?

4

1 回答 1

0

下面是我用的...

CGPoint buttonPosition = [sender convertPoint:CGPointZero toView:mainTableView];
NSIndexPath *indexPath = [mainTableView indexPathForRowAtPoint:buttonPosition];
NSLog(@"row index---%d", indexPath.row);
于 2013-11-06T14:49:47.030 回答