12345678910111213141516171819202122 |
- //
- // ClassTheoryList.h
- // JSJPCoach
- //
- // Created by EchoShacolee on 2017/7/15.
- // Copyright © 2017年 Danson. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef NS_ENUM(NSInteger, MyGetDataType) {
- //正常请求数据
- MyGetDataTypeNomal=0,
- //下拉刷新请求数据
- MyGetDataTypeHeaderRefresh,
- //上拉加载更多请求数据
- MyGetDataTypeFooterRefresh
- };
- @interface ClassTheoryList : UIViewController
- @end
|