JXVipDetailHeaderView.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // JXVipDetailHeaderView.h
  3. // Demo
  4. //
  5. // Created by cindy on 2020/6/3.
  6. // Copyright © 2020 Seqster. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface JXVipDetailHeaderView : UIView
  11. @property (nonatomic, strong) UIImageView *backImageView;//背景图片
  12. @property (nonatomic, strong) UIImageView *myGradeBigBackView;//当前等级大图片背景
  13. @property (nonatomic, strong) UILabel *numberLabel;
  14. @property (nonatomic, strong) UIImageView *headerImageView; //头像
  15. @property (nonatomic, strong) UILabel *nameLabel;//昵称
  16. @property (nonatomic, strong) UIImageView *myGradeView;//当前等级图片
  17. @property (nonatomic, strong) UIButton *leftGradeButton; //当前等级
  18. @property (nonatomic, strong) UIButton *nextGradeButton; //下一级等级
  19. @property (nonatomic, strong) UIImageView *progressImageView;//进度条背景图
  20. @property (nonatomic, strong) UIImageView *currentProgressImageView;//当前进度
  21. @property (nonatomic, strong) UIImageView *prgImageView;//进度值指示点图片
  22. @property (nonatomic, strong) UILabel *progressLabel; //进度值
  23. @property (nonatomic, strong) UIImageView *sanjiaoxingView;//三角形图片
  24. @property (nonatomic, strong) UIView *dianView; //点
  25. @property (nonatomic, strong) UILabel *currentLabel;
  26. @property (nonatomic, strong) UILabel *currentPriceLabel;//存款值
  27. @property (nonatomic, strong) UILabel *vipDeitalL;//存款值
  28. @property (nonatomic, strong) UIButton *gobackBtn;//存款值
  29. @end
  30. NS_ASSUME_NONNULL_END