ScanVC.h 590 B

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