1234567891011121314151617181920212223 |
- //
- // FKSegmentControl.h
- // FirstLink
- //
- // Created by jack on 16/5/10.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void(^changeIndex)(NSUInteger index);
- @interface FKSegmentControl : UIView
- @property (nonatomic, strong) NSArray *titleArray;
- @property (nonatomic, copy) changeIndex changeIndex;
- @property (nonatomic, assign) NSUInteger defaultSelectIndex;
- - (instancetype)initWithIndexTitles:(NSArray *)titleArray;
- @end
|