12345678910111213141516171819202122232425262728 |
- //
- // KBSignInTableViewCell.h
- // YouHuiProject
- //
- // Created by jcymac on 2018/10/12.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "KBSignInModel.h"
- @protocol KBSignInTableViewCellDelegate<NSObject>
- -(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)id<KBSignInTableViewCellDelegate>clickDelegate;
- - (void)refreshCellWithModel:(KBSignDetailModel *)detailModel andIndexPath:(NSIndexPath*)index;
- @end
- NS_ASSUME_NONNULL_END
|