下面是我所拥有的。
- (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==0
iOS 7。
但是它在 iOS6 中给出了正确的 row==。
知道为什么会这样吗?