| 12345678910111213141516171819202122 |
- //
- // PagerView.h
- // IBOSSHSH
- //
- // Created by ssl on 2017/11/17.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "PageSwitchModel.h"
- @interface PageSwitchView : UIView
- /**
- 存放PageSwitchModel的数组
- */
- @property (nonatomic, strong) NSMutableArray *datas;
- /**
- 当前位置
- */
- @property (nonatomic, assign) int currentIndex;
- @end
|