JXVipDetailCenterView.h 984 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // JXVipDetailCenterView.h
  3. // shiku_im
  4. //
  5. // Created by cindy on 2020/6/3.
  6. // Copyright © 2020 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class XFStepView;
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol JXVipDetailCenterViewDelegate <NSObject>
  12. @optional
  13. - (void)scrollViewDidEndDeceleratingWithCenterView:(UIScrollView *)scrollView;
  14. @end
  15. @interface JXVipDetailCenterView : UIView
  16. @property (nonatomic, strong) UIScrollView *grapeScrollView;//等级ScrollView
  17. @property (nonatomic, strong)XFStepView *stepView; //等级进度View
  18. @property (nonatomic, strong) UIScrollView *pictureScrollView;//图片ScrollView
  19. @property (nonatomic, strong) UILabel *numberLabel;
  20. @property (nonatomic, strong) UILabel *currentPageLabel;//当前页
  21. @property (nonatomic, strong) UILabel *totalPageLabel;//总数
  22. @property (nonatomic, weak) id <JXVipDetailCenterViewDelegate> delegate;
  23. - (instancetype)initWithFrame:(CGRect)frame Titles:(nonnull NSArray *)titles;
  24. @end
  25. NS_ASSUME_NONNULL_END