12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //
- // LZMChildFansCell.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/5/19.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "LZMChildFansModel.h"
- typedef void(^UpdateAction)(LZMChildFansModel *fanModel);
- @protocol YHChildFansDelegate <NSObject>
- @optional
- - (void)recommendFansByUserID:(NSString *)userId withUserName:(NSString *)userName;
- @property UIMenuItem *apzIDU;
- @property UIBarButtonItem *aCMKG9uS;
- @property UIAlertAction *a7NOh;
- @property UIBezierPath *auzHIS;
- @property UIImage *aRV5AKla;
- @property UIControlEvents *aX6erP3;
- @property UISwitch *aJwVt2n;
- @property UIControlEvents *ajh1M;
- @property UIViewController *aLk5I;
- @end
- @interface LZMChildFansCell : UITableViewCell
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @property (nonatomic, strong) UIButton *updateBtn;
- @property(nonatomic,strong)LZMChildFansModel *model;
- @property(nonatomic,weak) id<YHChildFansDelegate> delegate;
- @property(nonatomic,copy) UpdateAction updateAction;
- @property (nonatomic, strong) UIButton *sencondFansSumBtn;
- @property UIMenuItem *apzIDU;
- @property UIBarButtonItem *aCMKG9uS;
- @property UIAlertAction *a7NOh;
- @property UIBezierPath *auzHIS;
- @property UIImage *aRV5AKla;
- @property UIControlEvents *aX6erP3;
- @property UISwitch *aJwVt2n;
- @property UIControlEvents *ajh1M;
- @property UIViewController *aLk5I;
- @end
|