国内WASDK 应用墙渠道
hank
2017-03-27 a6a66df6bf92e361e8e1d77bd546c04f507e3fb3
commit | author | age
892936 1 //
H 2 //  MJRefreshBackStateFooter.h
3 //  MJRefreshExample
4 //
5 //  Created by MJ Lee on 15/6/13.
6 //  Copyright © 2015年 小码哥. All rights reserved.
7 //
8
9 #import "MJRefreshBackFooter.h"
10
11 @interface MJRefreshBackStateFooter : MJRefreshBackFooter
12 /** 显示刷新状态的label */
13 @property (weak, nonatomic, readonly) UILabel *stateLabel;
14 /** 设置state状态下的文字 */
15 - (void)setTitle:(NSString *)title forState:(MJRefreshState)state;
16
17 /** 获取state状态下的title */
18 - (NSString *)titleForState:(MJRefreshState)state;
19 @end