Tableview按钮获取index.row

Mik*_* V. 2 objective-c uitableview ios ios7

我在tableview单元格中有一个按钮(名为"deleteTemplate"),当按下它时,我应该得到按钮所在单元格的"index.row".任何人都知道如何获取单元格的"index.row" ,当你单击单元格中的按钮?

我目前的按钮代码:

UITableViewCell *clickedCell = (UITableViewCell *)[[sender superview] superview];
NSIndexPath *clickedButtonIndexPath = [self.tableView indexPathForCell:clickedCell];

NSDictionary *dic = [tableData objectAtIndex:clickedButtonIndexPath.row];
Run Code Online (Sandbox Code Playgroud)

但是clickedButtonIndexPath = NULL?:(

这适用于iOS 6.

谢谢!!!

Muh*_*han 5

您将获得null,因为iOS 7中的视图层次结构已更改.

我建议使用Delegate来获取TableViewCell的索引路径.

您可以从此处获取示例项目

这是样本:

我的视图控制器看起来像这样:


//#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