123456789101112131415161718192021 |
- //
- // KXTeachCycleView.h
- // CAISHEN
- //
- // Created by kuxuan on 2017/11/1.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol KXTeachCycleViewDelegate <NSObject>
- -(void)clickScrollViewItemWithIndex:(NSInteger)index;
- @end
- @interface KXTeachCycleView : UIView
- @property (nonatomic,strong)NSArray *cycleArray;
- @property (nonatomic,assign)id<KXTeachCycleViewDelegate>delegate;
- @end
|