ScanPageVC.h 575 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // ScanPageVC.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. @interface ScanPageVC : UIViewController
  10. {
  11. MyBlockType scanBlock;
  12. }
  13. /*
  14. 1.homeBase考试界面(扫终端理论学习/如果检测到是mnqtrain就提示跳到mnq)
  15. 2.function
  16. 3.
  17. ImitatePVc模拟(已屏蔽)
  18. shicaoVC实操(已屏蔽)
  19. */
  20. @property (nonatomic, copy) NSString *type;
  21. //homebase返回的是一个字典,function里面返回的是一个字符串
  22. -(void)scanBlock:(MyBlockType)block;
  23. @end