KSSegmentControl.h 476 B

12345678910111213141516171819202122232425262728
  1. //
  2. // KSSegmentControl.h
  3. // KulexiuForStudent
  4. //
  5. // Created by 王智 on 2022/4/5.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @protocol KSSegmentControlDelegate <NSObject>
  10. - (void)didSelectIndex:(NSInteger)chooseIndex;
  11. @end
  12. @interface KSSegmentControl : UIView
  13. @property (nonatomic, weak) id <KSSegmentControlDelegate>delegate;
  14. - (void)configWithArray:(NSArray *)titleArray;
  15. - (void)chooseSelectedIndex:(NSInteger)chooseIndex;
  16. @end
  17. NS_ASSUME_NONNULL_END