不带回调参数的方法
1.在cell.h 中创建回调属性
@property (nonatomic ,strong) void(^btn)(void); // 选中按钮回调
2.cell.m 中的按钮点击方法中实现点击方法
-(void)btnSelect{
if (_btn) {
_btn();
}
}
3.在controller中的cell方法里set方法调用回调
不带回调参数的方法
1.在cell.h 中创建回调属性
@property (nonatomic ,strong) void(^btn)(void); // 选中按钮回调
2.cell.m 中的按钮点击方法中实现点击方法
-(void)btnSelect{
if (_btn) {
_btn();
}
}
3.在controller中的cell方法里set方法调用回调
本文标题:Cell中按钮回调到controller中的方法
本文链接:https://www.haomeiwen.com/subject/jxgleftx.html
网友评论