| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- //
- // fans.h
- // YBVideo
- //
- // Created by cat on 16/4/1.
- // Copyright © 2016年 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol guanzhu <NSObject>
- -(void)doGuanzhu:(NSString*)st;
- @end
- @class fansModel;
- @interface fans : UITableViewCell
- @property(nonatomic,strong)fansModel *model;
- @property (weak, nonatomic) IBOutlet UIButton *iconV;
- - (IBAction)gaunzhuBTN:(UIButton *)btn;
- @property (weak, nonatomic) IBOutlet UIImageView *hostlevel;
- @property(nonatomic,assign)id<guanzhu>guanzhuDelegate;
- @property (weak, nonatomic) IBOutlet UILabel *nameL;
- @property (weak, nonatomic) IBOutlet UIImageView *sexL;
- @property (weak, nonatomic) IBOutlet UIImageView *levelL;
- @property (weak, nonatomic) IBOutlet UIButton *guanzhubtn;
- @property (weak, nonatomic) IBOutlet UILabel *IDL;
- @property (weak, nonatomic) IBOutlet UILabel *fansNumL;
- @property (weak, nonatomic) IBOutlet UILabel *lineLb;
- @property (weak, nonatomic) IBOutlet UILabel *signatureL;
- +(fans *)cellWithTableView:(UITableView *)tv;
- @end
|