XFStepView.h 607 B

1234567891011121314151617181920212223242526
  1. //
  2. // XFStepView.h
  3. // SCPay
  4. //
  5. // Created by weihongfang on 2017/6/26.
  6. // Copyright © 2017年 weihongfang. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "JXMyModel.h"
  10. #import "Common.h"
  11. #import "LabelSize.h"
  12. #define TINTCOLOR [UIColor colorWithRed:35/255.f green:135/255.f blue:255/255.f alpha:1]
  13. @interface XFStepView : UIView
  14. @property (nonatomic, retain)NSArray * _Nonnull titles;
  15. @property (nonatomic, assign)int stepIndex;
  16. - (instancetype _Nonnull )initWithFrame:(CGRect)frame Titles:(nonnull NSArray *)titles;
  17. - (void)setStepIndex:(int)stepIndex Animation:(BOOL)animation;
  18. @end