123456789101112131415161718192021222324252627282930 |
- //
- // RQVipCenterItemView.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/11/15.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface RQVipCenterItemView : UIView
- @property (weak, nonatomic) IBOutlet UIImageView *arrowImageView;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *arrowToLeft;
- @property (weak, nonatomic) IBOutlet UIImageView *bgImageView;
- @property (weak, nonatomic) IBOutlet QMUIButton *leftIconVipBtn;
- @property (weak, nonatomic) IBOutlet QMUIButton *leftVipBtn;
- @property (weak, nonatomic) IBOutlet QMUIButton *rightVipBtn;
- @property (weak, nonatomic) IBOutlet QMUIButton *openVipBtn;
- @property (weak, nonatomic) IBOutlet QMUIButton *dateVipBtn;
- @property (weak, nonatomic) IBOutlet QMUIButton *continueBtn;
- @property (nonatomic, readwrite, assign) RQHomePageSubjectType homePageSubjectType;
- @property (nonatomic, readwrite, copy) NSArray *typeModels;
- + (instancetype)rqVipCenterItemView;
- @end
- NS_ASSUME_NONNULL_END
|