123456789101112131415161718192021 |
- //
- // WHVipDropView.h
- // MSYOUPAI
- //
- // Created by 刘必果 on 2024/2/1.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface WHVipDropView : UIView
- @property (nonatomic, strong) UIImageView *bgImageView;
- @property (nonatomic, strong) UIImageView *logImageView;
- @property (nonatomic, strong) UIButton *nextBtn; //箭头
- @property (nonatomic, strong) UILabel *titleLab; // 查看开通会员10大权益
- @end
- NS_ASSUME_NONNULL_END
|