1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| //
| // UICollectionViewLayout+MJRefresh.h
| //
| // 该类是用来解决 Footer 在底端加载完成后, 仍停留在原处的 bug.
| // 此问题出现在 iOS 14 及以下系统上.
| // Reference: https://github.com/CoderMJLee/MJRefresh/issues/1552
| //
| // Created by jiasong on 2021/11/15.
| // Copyright © 2021 小码哥. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
|
| NS_ASSUME_NONNULL_BEGIN
|
| @interface UICollectionViewLayout (MJRefresh)
|
| @end
|
| NS_ASSUME_NONNULL_END
|
|