PageSwitchView.h 387 B

12345678910111213141516171819202122
  1. //
  2. // PagerView.h
  3. // IBOSSHSH
  4. //
  5. // Created by ssl on 2017/11/17.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "PageSwitchModel.h"
  10. @interface PageSwitchView : UIView
  11. /**
  12. 存放PageSwitchModel的数组
  13. */
  14. @property (nonatomic, strong) NSMutableArray *datas;
  15. /**
  16. 当前位置
  17. */
  18. @property (nonatomic, assign) int currentIndex;
  19. @end