MJRefreshBackStateFooter.h 534 B

12345678910111213141516171819
  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. /** 显示刷新状态的label */
  11. @property (weak, nonatomic, readonly) UILabel *stateLabel;
  12. /** 设置state状态下的文字 */
  13. - (void)setTitle:(NSString *)title forState:(MJRefreshState)state;
  14. /** 获取state状态下的title */
  15. - (NSString *)titleForState:(MJRefreshState)state;
  16. @end