// // fans.h // YBVideo // // Created by cat on 16/4/1. // Copyright © 2016年 cat. All rights reserved. // #import @protocol guanzhu -(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)idguanzhuDelegate; @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