MJRefreshBackStateFooter.h 632 B

123456789101112131415161718192021
  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. @interface MJRefreshBackStateFooter : MJRefreshBackFooter
  10. /** 文字距离圈圈、箭头的距离 */
  11. @property (assign, nonatomic) CGFloat labelLeftInset;
  12. /** 显示刷新状态的label */
  13. @property (weak, nonatomic, readonly) UILabel *stateLabel;
  14. /** 设置state状态下的文字 */
  15. - (void)setTitle:(NSString *)title forState:(MJRefreshState)state;
  16. /** 获取state状态下的title */
  17. - (NSString *)titleForState:(MJRefreshState)state;
  18. @end