ZKCycleScrollView.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. //
  2. // ZKCycleScrollView.h
  3. // ZKCycleScrollViewDemo-OC
  4. //
  5. // Created by bestdew on 2019/3/9.
  6. // Copyright © 2019 bestdew. All rights reserved.
  7. //
  8. // d*##$.
  9. // zP"""""$e. $" $o
  10. //4$ '$ $" $
  11. //'$ '$ J$ $F
  12. // 'b $k $> $
  13. // $k $r J$ d$
  14. // '$ $ $" $~
  15. // '$ "$ '$E $
  16. // $ $L $" $F ...
  17. // $. 4B $ $$$*"""*b
  18. // '$ $. $$ $$ $F
  19. // "$ R$ $F $" $
  20. // $k ?$ u* dF .$
  21. // ^$. $$" z$ u$$$$e
  22. // #$b $E.dW@e$" ?$
  23. // #$ .o$$# d$$$$c ?F
  24. // $ .d$$#" . zo$> #$r .uF
  25. // $L .u$*" $&$$$k .$$d$$F
  26. // $$" ""^"$$$P"$P9$
  27. // JP .o$$$$u:$P $$
  28. // $ ..ue$" "" $"
  29. // d$ $F $
  30. // $$ ....udE 4B
  31. // #$ """"` $r @$
  32. // ^$L '$ $F
  33. // RN 4N $
  34. // *$b d$
  35. // $$k $F
  36. // $$b $F
  37. // $"" $F
  38. // '$ $
  39. // $L $
  40. // '$ $
  41. // $ $
  42. #import <UIKit/UIKit.h>
  43. NS_ASSUME_NONNULL_BEGIN
  44. @class ZKCycleScrollView;
  45. @compatibility_alias ZKCycleScrollViewCell UICollectionViewCell;
  46. typedef NS_ENUM(NSInteger, ZKScrollDirection) {
  47. ZKScrollDirectionHorizontal = 0,
  48. ZKScrollDirectionVertical
  49. };
  50. @protocol ZKCycleScrollViewDataSource <NSObject>
  51. // Return number of pages
  52. - (NSInteger)numberOfItemsInCycleScrollView:(ZKCycleScrollView *)cycleScrollView;
  53. // The cell that is returned must be retrieved from a call to -dequeueReusableCellWithReuseIdentifier:forIndex:
  54. - (__kindof ZKCycleScrollViewCell *)cycleScrollView:(ZKCycleScrollView *)cycleScrollView cellForItemAtIndex:(NSInteger)index;
  55. @end
  56. @protocol ZKCycleScrollViewDelegate <NSObject>
  57. @optional
  58. // Called when the cell is clicked
  59. - (void)cycleScrollView:(ZKCycleScrollView *)cycleScrollView didSelectItemAtIndex:(NSInteger)index;
  60. // Called when the offset changes. The progress range is from 0 to the maximum index value, which means the progress value for a round of scrolling
  61. - (void)cycleScrollViewDidScroll:(ZKCycleScrollView *)cycleScrollView progress:(CGFloat)progress;
  62. // Called when scrolling to a new index page
  63. - (void)cycleScrollView:(ZKCycleScrollView *)cycleScrollView didScrollFromIndex:(NSInteger)fromIndex toIndex:(NSInteger)toIndex;
  64. @end
  65. IB_DESIGNABLE
  66. @interface ZKCycleScrollView : UIView
  67. // Must specify infiniteLoop at creation. -initWithFrame: calls this with YES.
  68. - (instancetype)initWithFrame:(CGRect)frame shouldInfiniteLoop:(BOOL)infiniteLoop NS_DESIGNATED_INITIALIZER;
  69. - (nullable instancetype)initWithCoder:(NSCoder *)aDecoder NS_DESIGNATED_INITIALIZER;
  70. @property (nullable, nonatomic, weak) IBOutlet id<ZKCycleScrollViewDelegate> delegate;
  71. @property (nullable, nonatomic, weak) IBOutlet id<ZKCycleScrollViewDataSource> dataSource;
  72. #if TARGET_INTERFACE_BUILDER
  73. @property (nonatomic, assign) IBInspectable NSInteger scrollDirection;
  74. @property (nonatomic, assign) IBInspectable double autoScrollInterval;
  75. #else
  76. @property (nonatomic, assign) ZKScrollDirection scrollDirection; // default horizontal. scroll direction
  77. @property (nonatomic, assign) NSTimeInterval autoScrollInterval; // default 3.f. automatic scroll time interval
  78. #endif
  79. @property (nonatomic, assign) IBInspectable BOOL autoScroll; // default YES
  80. @property (nonatomic, assign) IBInspectable BOOL allowsDragging; // default YES. turn off any dragging temporarily
  81. @property (nonatomic, readonly, assign) IBInspectable BOOL infiniteLoop; // default YES. infinite cycle
  82. @property (nonatomic, assign) IBInspectable CGSize itemSize; // default the view size
  83. @property (nonatomic, assign) IBInspectable CGFloat itemSpacing; // default 0.f
  84. @property (nonatomic, assign) IBInspectable CGFloat itemZoomScale; // default 1.f(no scaling), it ranges from 0.f to 1.f
  85. @property (nonatomic, assign) IBInspectable BOOL hidesPageControl; // default NO
  86. @property (nullable, nonatomic, strong) IBInspectable UIColor *pageIndicatorTintColor; // default gray
  87. @property (nullable, nonatomic, strong) IBInspectable UIColor *currentPageIndicatorTintColor; // default white
  88. @property (nonatomic, readonly, assign) NSInteger pageIndex; // current page index
  89. @property (nonatomic, readonly, assign) CGPoint contentOffset; // current content offset
  90. @property (nullable, nonatomic, copy) dispatch_block_t loadCompletion; // load completed callback
  91. - (void)registerCellClass:(nullable Class)cellClass forCellWithReuseIdentifier:(NSString *)identifier;
  92. - (void)registerCellNib:(nullable UINib *)nib forCellWithReuseIdentifier:(NSString *)identifier;
  93. - (__kindof ZKCycleScrollViewCell *)dequeueReusableCellWithReuseIdentifier:(NSString *)identifier forIndex:(NSInteger)index;
  94. - (void)reloadData;
  95. // Call -beginUpdates and -endUpdates to update layout
  96. // Allows multiple scrollDirection/itemSize/itemSpacing/itemZoomScale to be set simultaneously.
  97. - (void)beginUpdates;
  98. - (void)endUpdates;
  99. // Scroll to page
  100. - (void)scrollToItemAtIndex:(NSInteger)index animated:(BOOL)animated;
  101. // Returns the visible cell object at the specified index
  102. - (__kindof ZKCycleScrollViewCell * _Nullable)cellForItemAtIndex:(NSInteger)index;
  103. @end
  104. NS_ASSUME_NONNULL_END