MJRefreshStateTrailer.h 522 B

123456789101112131415161718192021222324
  1. //
  2. // MJRefreshStateTrailer.h
  3. // MJRefreshExample
  4. //
  5. // Created by kinarobin on 2020/5/3.
  6. // Copyright © 2020 小码哥. All rights reserved.
  7. //
  8. #import "MJRefreshTrailer.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MJRefreshStateTrailer : MJRefreshTrailer
  11. #pragma mark - 状态相关
  12. /** 显示刷新状态的label */
  13. @property (weak, nonatomic, readonly) UILabel *stateLabel;
  14. /** 设置state状态下的文字 */
  15. - (instancetype)setTitle:(NSString *)title forState:(MJRefreshState)state;
  16. @end
  17. NS_ASSUME_NONNULL_END