省钱达人

DRChildFansCell.h 788B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // DRChildFansCell.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 "DRChildFansModel.h"
  10. typedef void(^UpdateAction)(DRChildFansModel *fanModel);
  11. @protocol YHChildFansDelegate <NSObject>
  12. @optional
  13. - (void)recommendFansByUserID:(NSString *)userId withUserName:(NSString *)userName;
  14. @end
  15. @interface DRChildFansCell : UITableViewCell
  16. + (instancetype)cellWithTableView:(UITableView *)tableView;
  17. @property (nonatomic, strong) UIButton *updateBtn;
  18. @property(nonatomic,strong)DRChildFansModel *model;
  19. @property(nonatomic,weak) id<YHChildFansDelegate> delegate;
  20. @property(nonatomic,copy) UpdateAction updateAction;
  21. @property (nonatomic, strong) UIButton *sencondFansSumBtn;
  22. @end