在cell类的.h中添加
@property(nonatomic,strong)void (^btnBlock)();
在cell类的.m中Button的点击方法中添加
if (self.btnBlock) {
self.btnBlock();
}
然后在控制器的UITableViewDelegate的
-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath中添加
cell.btnBlock = ^(){
NSLog(@"button %ld",(long)indexPath.row);
};
便实现了点击cell上的按钮时执行点击按钮的方法,而不是点击cell的方法。