YLScrollView.h 673 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // YLScrollView.h
  3. // ClearnYLScrollView
  4. //
  5. // Created by 翟玉磊 on 16/6/21.
  6. // Copyright © 2016年 翟玉磊. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol YLScrollViewDelegate <NSObject>
  10. - (void)selectedImageIndex:(NSInteger)index;
  11. @end
  12. @interface YLScrollView : UIView
  13. /**
  14. * 占位图
  15. */
  16. @property (nonatomic, strong) UIImage *defaultImage;
  17. /**
  18. * 滚动延时
  19. */
  20. @property (nonatomic, assign) NSTimeInterval autoScrollDelay;
  21. @property (nonatomic, weak) id <YLScrollViewDelegate>delegate;
  22. /**
  23. * 填充图片数据 根据数组来判断显示状态
  24. *
  25. * @param array 图片数组
  26. */
  27. - (void)setImageArrayData:(NSArray *)array;
  28. @end