MJRefreshBackStateFooter.h 680 B

12345678910111213141516171819202122232425
  1. //
  2. // MJRefreshBackStateFooter.h
  3. // MJRefreshExample
  4. //
  5. // Created by MJ Lee on 15/6/13.
  6. // Copyright © 2015年 小码哥. All rights reserved.
  7. //
  8. #import "MJRefreshBackFooter.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MJRefreshBackStateFooter : MJRefreshBackFooter
  11. /** 文字距离圈圈、箭头的距离 */
  12. @property (assign, nonatomic) CGFloat labelLeftInset;
  13. /** 显示刷新状态的label */
  14. @property (weak, nonatomic, readonly) UILabel *stateLabel;
  15. /** 设置state状态下的文字 */
  16. - (void)setTitle:(NSString *)title forState:(MJRefreshState)state;
  17. /** 获取state状态下的title */
  18. - (NSString *)titleForState:(MJRefreshState)state;
  19. @end
  20. NS_ASSUME_NONNULL_END