1234567891011121314151617181920212223242526272829 |
- //
- // JXVipDetailCenterView.h
- // shiku_im
- //
- // Created by cindy on 2020/6/3.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class XFStepView;
- NS_ASSUME_NONNULL_BEGIN
- @protocol JXVipDetailCenterViewDelegate <NSObject>
- @optional
- - (void)scrollViewDidEndDeceleratingWithCenterView:(UIScrollView *)scrollView;
- @end
- @interface JXVipDetailCenterView : UIView
- @property (nonatomic, strong) UIScrollView *grapeScrollView;//等级ScrollView
- @property (nonatomic, strong)XFStepView *stepView; //等级进度View
- @property (nonatomic, strong) UIScrollView *pictureScrollView;//图片ScrollView
- @property (nonatomic, strong) UILabel *numberLabel;
- @property (nonatomic, strong) UILabel *currentPageLabel;//当前页
- @property (nonatomic, strong) UILabel *totalPageLabel;//总数
- @property (nonatomic, weak) id <JXVipDetailCenterViewDelegate> delegate;
- - (instancetype)initWithFrame:(CGRect)frame Titles:(nonnull NSArray *)titles;
- @end
- NS_ASSUME_NONNULL_END
|