GHRefreshHeader.h 728 B

12345678910111213141516171819202122
  1. //
  2. // GHRefreshHeader.h
  3. // GameHelper
  4. //
  5. // Created by 青秀斌 on 16/12/29.
  6. // Copyright © 2016年 kylincc. All rights reserved.
  7. //
  8. #import <MJRefresh/MJRefresh.h>
  9. #import "CarRefreshHeadView.h"
  10. @interface GHRefreshHeader : MJRefreshHeader
  11. @property (nonatomic, copy) NSString *textForIdle;
  12. @property (nonatomic, copy) NSString *textForPulling;
  13. @property (nonatomic, copy) NSString *textForRefreshing;
  14. @property (nonatomic, strong) CarRefreshHeadView *carRefreshHeadView;
  15. @property (nonatomic, assign) CarRefreshBackgroundType backgroupType;
  16. + (instancetype)headerWithRefreshingBlock:(MJRefreshComponentRefreshingBlock)refreshingBlock carRefreshBackgroundType:(CarRefreshBackgroundType)carRefreshBackgroundType;
  17. @end