你得到 null 因为 iOS 7 中的视图层次结构发生了变化。
我推荐使用 Delegate 来获取 TableViewCell 的 indexpath。
您可以从这里获取示例项目
这是示例:
我的视图控制器如下所示:
//#import "ViewController.h"
//#import "MyCustomCell.h"
@interface ViewController () 
{
    IBOutlet UITableView *myTableView;
    NSMutableArray *dataSourceArray;
}
@end
@implementation ViewController
-(void)viewDidLoad
{
    [super viewDidLoad];
    dataSourceArray = [[NSMutableArray alloc] init];
    for(int i=0;i<20;i++)
        [dataSourceArray addObject:[NSString stringWithFormat:@"Dummy-%d",i]];
}
-(void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
}
//pragma mark - UITableView Delegate And Datasource -
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return dataSourceArray.count;
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *cellIdenfifier = @"MyCustomCell";
    MyCustomCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdenfifier forIndexPath:indexPath];
    [cell setDelegate:self];
    [cell.myButton setTitle:[dataSourceArray objectAtIndex:indexPath.row] forState:UIControlStateNormal];
    return cell;
}
//pragma mark - MyCustomCell Delegate -
-(IBAction)myCustomCellButtonTapped:(UITableViewCell *)cell button:(UIButton *)sender
{
    NSIndexPath *indexPath = [myTableView indexPathForCell:cell];
    NSLog(@"indexpath: %@",indexPath);
}
@end
MyCustomCell.h 看起来像这样:
//#import 
@protocol MyCustomCellDelegate 
@optional
- (IBAction)myCustomCellButtonTapped:(UITableViewCell *)cell button:(UIButton *)sender;
@end
@interface MyCustomCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UIButton *myButton;
@property(nonatomic, weak)id delegate;
@end
MyCustomCell.m 看起来像这样:
//#import "MyCustomCell.h"
@implementation MyCustomCell
-(id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
    }
    return self;
}
-(void)setSelected:(BOOL)selected animated:(BOOL)animated
{
    [super setSelected:selected animated:animated];
}
//#pragma mark - My IBActions -
-(IBAction)myCustomCellButtonTapped:(UIButton *)sender
{
    if([self.delegate respondsToSelector:@selector(myCustomCellButtonTapped:button:)])
        [self.delegate myCustomCellButtonTapped:self button:sender];
}
@end