123456789101112131415161718192021 |
- //
- // FKPreferScrollView.h
- // FirstLink
- //
- // Created by jack on 16/5/11.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void(^changeSelect)(NSUInteger index, BOOL selected);
- @interface FKPreferScrollView : UIScrollView
- @property (nonatomic, strong) NSArray *modelArray;
- @property (nonatomic, copy) changeSelect changeSelect;
- - (instancetype)initWithIndexModelArray:(NSArray *)modelArray;
- @end
|