// // JXVipDetailCenterView.h // shiku_im // // Created by cindy on 2020/6/3. // Copyright © 2020 Reese. All rights reserved. // #import @class XFStepView; NS_ASSUME_NONNULL_BEGIN @protocol JXVipDetailCenterViewDelegate @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 delegate; - (instancetype)initWithFrame:(CGRect)frame Titles:(nonnull NSArray *)titles; @end NS_ASSUME_NONNULL_END