HJPageListView.h 927 B

12345678910111213141516171819202122232425262728
  1. //
  2. // HJPageListView.h
  3. // HappyJob
  4. //
  5. // Created by Bob on 2019/5/5.
  6. // Copyright © 2019 Bob. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "FBBaseAPIManager.h"
  10. #import "FBAPIManagerDataBox.h"
  11. #import "HJBlankView.h"
  12. #import "HJRefreshHeaderView.h"
  13. #import "HJRefreshFooterView.h"
  14. NS_ASSUME_NONNULL_BEGIN
  15. @interface HJPageListView : UIView <FBAPIManagerDelegate, FBAPIManagerInterceptor>
  16. @property (nonatomic, strong, readonly) HJRefreshHeaderView *refreshHeader;
  17. @property (nonatomic, strong, readonly) HJRefreshFooterView *refreshFooter;
  18. @property (nonatomic, strong, readonly) HJBlankView *blankView;
  19. @property (nonatomic, strong, readonly) UITableView *tableView;
  20. @property (nonatomic, assign, getter=isFirstLoading) BOOL firstLoading;
  21. @property (nonatomic, weak) FBBaseAPIManager<FBPageableAPIManager> *APIManager;
  22. @property (nonatomic, weak) id<FBAPIManagerDataBox> dataBox;
  23. @end
  24. NS_ASSUME_NONNULL_END