RQVipCenterItemView.h 1004 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // RQVipCenterItemView.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/11/15.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQVipCenterItemView : UIView
  11. @property (weak, nonatomic) IBOutlet UIImageView *arrowImageView;
  12. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *arrowToLeft;
  13. @property (weak, nonatomic) IBOutlet UIImageView *bgImageView;
  14. @property (weak, nonatomic) IBOutlet QMUIButton *leftIconVipBtn;
  15. @property (weak, nonatomic) IBOutlet QMUIButton *leftVipBtn;
  16. @property (weak, nonatomic) IBOutlet QMUIButton *rightVipBtn;
  17. @property (weak, nonatomic) IBOutlet QMUIButton *openVipBtn;
  18. @property (weak, nonatomic) IBOutlet QMUIButton *dateVipBtn;
  19. @property (weak, nonatomic) IBOutlet QMUIButton *continueBtn;
  20. @property (nonatomic, readwrite, assign) RQHomePageSubjectType homePageSubjectType;
  21. @property (nonatomic, readwrite, copy) NSArray *typeModels;
  22. + (instancetype)rqVipCenterItemView;
  23. @end
  24. NS_ASSUME_NONNULL_END