UICollectionViewLayout+MJRefresh.h 474 B

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