ClassTheoryList.h 449 B

12345678910111213141516171819202122
  1. //
  2. // ClassTheoryList.h
  3. // JSJPCoach
  4. //
  5. // Created by EchoShacolee on 2017/7/15.
  6. // Copyright © 2017年 Danson. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef NS_ENUM(NSInteger, MyGetDataType) {
  10. //正常请求数据
  11. MyGetDataTypeNomal=0,
  12. //下拉刷新请求数据
  13. MyGetDataTypeHeaderRefresh,
  14. //上拉加载更多请求数据
  15. MyGetDataTypeFooterRefresh
  16. };
  17. @interface ClassTheoryList : UIViewController
  18. @end