1234567891011121314151617181920 |
- //
- // JXPagerSmoothView+RQExtension.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/6/19.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "JXPagerSmoothView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface JXPagerSmoothView (RQExtension)
- /**
- 当前已经加载过的列表:key就是@(index)值,value是对应的列表。
- */
- @property (nonatomic, strong, readwrite) NSMutableDictionary <NSNumber *, id<JXPagerSmoothViewListViewDelegate>> *listDict;
- @end
- NS_ASSUME_NONNULL_END
|