12345678910111213141516171819202122232425262728 |
- //
- // KSSegmentControl.h
- // KulexiuForStudent
- //
- // Created by 王智 on 2022/4/5.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @protocol KSSegmentControlDelegate <NSObject>
- - (void)didSelectIndex:(NSInteger)chooseIndex;
- @end
- @interface KSSegmentControl : UIView
- @property (nonatomic, weak) id <KSSegmentControlDelegate>delegate;
- - (void)configWithArray:(NSArray *)titleArray;
- - (void)chooseSelectedIndex:(NSInteger)chooseIndex;
- @end
- NS_ASSUME_NONNULL_END
|