Nenhuma Descrição

KXTeachCycleView.h 425B

123456789101112131415161718192021
  1. //
  2. // KXTeachCycleView.h
  3. // CAISHEN
  4. //
  5. // Created by kuxuan on 2017/11/1.
  6. // Copyright © 2017年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol KXTeachCycleViewDelegate <NSObject>
  10. -(void)clickScrollViewItemWithIndex:(NSInteger)index;
  11. @end
  12. @interface KXTeachCycleView : UIView
  13. @property (nonatomic,strong)NSArray *cycleArray;
  14. @property (nonatomic,assign)id<KXTeachCycleViewDelegate>delegate;
  15. @end