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