// // KBSignInTableViewCell.h // YouHuiProject // // Created by jcymac on 2018/10/12. // Copyright © 2018年 kuxuan. All rights reserved. // #import #import "KBSignInModel.h" @protocol KBSignInTableViewCellDelegate -(void)clickCellIndexPath:(NSIndexPath *)index; @end NS_ASSUME_NONNULL_BEGIN @interface KBSignInTableViewCell : UITableViewCell @property(nonatomic, strong)UIImageView *leftImageView; @property(nonatomic, strong)UILabel *contentLable; @property(nonatomic, strong)UIButton *rightBtn; @property(nonatomic, strong)UIView *lineView; @property(nonatomic, weak)idclickDelegate; - (void)refreshCellWithModel:(KBSignDetailModel *)detailModel andIndexPath:(NSIndexPath*)index; @end NS_ASSUME_NONNULL_END