// // HSQChildFansCell.h // YouHuiProject // // Created by 小花 on 2018/5/19. // Copyright © 2018年 kuxuan. All rights reserved. // #import #import "HSQChildFansModel.h" typedef void(^UpdateAction)(HSQChildFansModel *fanModel); @protocol YHChildFansDelegate @optional - (void)recommendFansByUserID:(NSString *)userId withUserName:(NSString *)userName; @end @interface HSQChildFansCell : UITableViewCell + (instancetype)cellWithTableView:(UITableView *)tableView; @property (nonatomic, strong) UIButton *updateBtn; @property(nonatomic,strong)HSQChildFansModel *model; @property(nonatomic,weak) id delegate; @property(nonatomic,copy) UpdateAction updateAction; @property (nonatomic, strong) UIButton *sencondFansSumBtn; @property (nonatomic, assign) NSInteger cellType; @property(nonatomic,strong)UIButton *registBtn; @end