fans.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //
  2. // fans.h
  3. // YBVideo
  4. //
  5. // Created by cat on 16/4/1.
  6. // Copyright © 2016年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol guanzhu <NSObject>
  10. -(void)doGuanzhu:(NSString*)st;
  11. @end
  12. @class fansModel;
  13. @interface fans : UITableViewCell
  14. @property(nonatomic,strong)fansModel *model;
  15. @property (weak, nonatomic) IBOutlet UIButton *iconV;
  16. - (IBAction)gaunzhuBTN:(UIButton *)btn;
  17. @property (weak, nonatomic) IBOutlet UIImageView *hostlevel;
  18. @property(nonatomic,assign)id<guanzhu>guanzhuDelegate;
  19. @property (weak, nonatomic) IBOutlet UILabel *nameL;
  20. @property (weak, nonatomic) IBOutlet UIImageView *sexL;
  21. @property (weak, nonatomic) IBOutlet UIImageView *levelL;
  22. @property (weak, nonatomic) IBOutlet UIButton *guanzhubtn;
  23. @property (weak, nonatomic) IBOutlet UILabel *IDL;
  24. @property (weak, nonatomic) IBOutlet UILabel *fansNumL;
  25. @property (weak, nonatomic) IBOutlet UILabel *lineLb;
  26. @property (weak, nonatomic) IBOutlet UILabel *signatureL;
  27. +(fans *)cellWithTableView:(UITableView *)tv;
  28. @end