BogoShowNobleCell.h 916 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // BogoShowNobleCell.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/5/9.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MGShowVipModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface BogoShowNobleCell : UITableViewCell
  12. @property (weak, nonatomic) IBOutlet UILabel *rankLabel;
  13. @property (weak, nonatomic) IBOutlet UIImageView *headImgView;
  14. @property (weak, nonatomic) IBOutlet UILabel *nickNameL;
  15. @property (weak, nonatomic) IBOutlet UIImageView *rankImgView;
  16. @property (weak, nonatomic) IBOutlet UIImageView *nobleImgView;
  17. @property (weak, nonatomic) IBOutlet UIButton *concertBtn;
  18. @property(nonatomic, strong) MGShowVipModel *model;
  19. @property(nonatomic, copy) void (^clickHeadBlock)(MGShowVipModel *model);
  20. @property ( nonatomic,copy) void (^headViewAttentionBlock) (BOOL isAttention);
  21. -(void)resetModel:(MGShowVipModel *)model;
  22. @end
  23. NS_ASSUME_NONNULL_END