口袋优选

KBChildFansCell.h 788B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // KBChildFansCell.h
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/5/19.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "KBChildFansModel.h"
  10. typedef void(^UpdateAction)(KBChildFansModel *fanModel);
  11. @protocol YHChildFansDelegate <NSObject>
  12. @optional
  13. - (void)recommendFansByUserID:(NSString *)userId withUserName:(NSString *)userName;
  14. @end
  15. @interface KBChildFansCell : UITableViewCell
  16. + (instancetype)cellWithTableView:(UITableView *)tableView;
  17. @property (nonatomic, strong) UIButton *updateBtn;
  18. @property(nonatomic,strong)KBChildFansModel *model;
  19. @property(nonatomic,weak) id<YHChildFansDelegate> delegate;
  20. @property(nonatomic,copy) UpdateAction updateAction;
  21. @property (nonatomic, strong) UIButton *sencondFansSumBtn;
  22. @end