在cell類(lèi)的.h中添加
@property(nonatomic,strong)void (^btnBlock)();
在cell類(lèi)的.m中Button的點(diǎn)擊方法中添加
if (self.btnBlock) {
self.btnBlock();
}
然后在控制器的UITableViewDelegate的
-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath中添加
cell.btnBlock = ^(){
NSLog(@"button %ld",(long)indexPath.row);
};
便實(shí)現(xiàn)了點(diǎn)擊cell上的按鈕時(shí)執(zhí)行點(diǎn)擊按鈕的方法示血,而不是點(diǎn)擊cell的方法棋傍。