猎豆优选

LDChildFansCell.h 888B

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