口袋优选

KBSignInTableViewCell.h 777B

12345678910111213141516171819202122232425262728
  1. //
  2. // KBSignInTableViewCell.h
  3. // YouHuiProject
  4. //
  5. // Created by jcymac on 2018/10/12.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "KBSignInModel.h"
  10. @protocol KBSignInTableViewCellDelegate<NSObject>
  11. -(void)clickCellIndexPath:(NSIndexPath *)index;
  12. @end
  13. NS_ASSUME_NONNULL_BEGIN
  14. @interface KBSignInTableViewCell : UITableViewCell
  15. @property(nonatomic, strong)UIImageView *leftImageView;
  16. @property(nonatomic, strong)UILabel *contentLable;
  17. @property(nonatomic, strong)UIButton *rightBtn;
  18. @property(nonatomic, strong)UIView *lineView;
  19. @property(nonatomic, weak)id<KBSignInTableViewCellDelegate>clickDelegate;
  20. - (void)refreshCellWithModel:(KBSignDetailModel *)detailModel andIndexPath:(NSIndexPath*)index;
  21. @end
  22. NS_ASSUME_NONNULL_END