JXPagerSmoothView+RQExtension.h 484 B

1234567891011121314151617181920
  1. //
  2. // JXPagerSmoothView+RQExtension.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/6/19.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import "JXPagerSmoothView.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface JXPagerSmoothView (RQExtension)
  11. /**
  12. 当前已经加载过的列表:key就是@(index)值,value是对应的列表。
  13. */
  14. @property (nonatomic, strong, readwrite) NSMutableDictionary <NSNumber *, id<JXPagerSmoothViewListViewDelegate>> *listDict;
  15. @end
  16. NS_ASSUME_NONNULL_END