12345678910111213141516171819202122 |
- //
- // ViewController.h
- // JSJPCoach
- //
- // Created by apple on 2017/3/10.
- // Copyright © 2017年 Danson. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface ViewController : UIViewController
- /**
- periodType 带教类型 0:没计时 1:实时 2:预约 3:模拟 4:断线重连
- */
- @property (nonatomic, assign) NSInteger periodType;
- @property (nonatomic, strong) NSDictionary *periodDic;
- @end
|