1234567891011121314151617181920212223242526272829303132 |
- //
- // ScanVC.h
- // jiaPei
- //
- // Created by apple on 16/4/19.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "HomeBaseVC.h"
- @interface ScanVC : UIViewController
- {
- MyBlockType scanBlock;
- }
- /*
- 1.homeBase考试界面(扫终端理论学习/如果检测到是mnqtrain就提示跳到mnq)
- 2.function
- 3.
-
- ImitatePVc模拟(已屏蔽)
- shicaoVC实操(已屏蔽)
- */
- @property (nonatomic, copy) NSString *type;
- //homebase返回的是一个字典,function里面返回的是一个字符串
- -(void)scanBlock:(MyBlockType)block;
- @end
|