在cell.h定义
@property(nonatomic,strong)void(^pushType)(NSInteger);
在cell.m按钮点击时 _pushType(1);(举例)
在用到cell的tableView中
cell.pushType=^(NSInteger index){
if(index==1){
...
}
};
时间: 2024-10-14 03:52:02
在cell.h定义
@property(nonatomic,strong)void(^pushType)(NSInteger);
在cell.m按钮点击时 _pushType(1);(举例)
在用到cell的tableView中
cell.pushType=^(NSInteger index){
if(index==1){
...
}
};