1234567891011121314151617181920212223242526272829303132333435 |
- //
- // YLScrollView.h
- // ClearnYLScrollView
- //
- // Created by 翟玉磊 on 16/6/21.
- // Copyright © 2016年 翟玉磊. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol YLScrollViewDelegate <NSObject>
- - (void)selectedImageIndex:(NSInteger)index;
- @end
- @interface YLScrollView : UIView
- /**
- * 占位图
- */
- @property (nonatomic, strong) UIImage *defaultImage;
- /**
- * 滚动延时
- */
- @property (nonatomic, assign) NSTimeInterval autoScrollDelay;
- @property (nonatomic, weak) id <YLScrollViewDelegate>delegate;
- /**
- * 填充图片数据 根据数组来判断显示状态
- *
- * @param array 图片数组
- */
- - (void)setImageArrayData:(NSArray *)array;
- @end
|