12345678910111213141516171819202122 |
- //
- // GHRefreshHeader.h
- // GameHelper
- //
- // Created by 青秀斌 on 16/12/29.
- // Copyright © 2016年 kylincc. All rights reserved.
- //
- #import <MJRefresh/MJRefresh.h>
- #import "CarRefreshHeadView.h"
- @interface GHRefreshHeader : MJRefreshHeader
- @property (nonatomic, copy) NSString *textForIdle;
- @property (nonatomic, copy) NSString *textForPulling;
- @property (nonatomic, copy) NSString *textForRefreshing;
- @property (nonatomic, strong) CarRefreshHeadView *carRefreshHeadView;
- @property (nonatomic, assign) CarRefreshBackgroundType backgroupType;
- + (instancetype)headerWithRefreshingBlock:(MJRefreshComponentRefreshingBlock)refreshingBlock carRefreshBackgroundType:(CarRefreshBackgroundType)carRefreshBackgroundType;
- @end
|