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