ScanVC.h 401 B

12345678910111213141516171819202122
  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 "ShiCaoPeriodVC.h"
  10. @interface ScanVC : UIViewController
  11. {
  12. MyBlockType scanBlock;
  13. }
  14. @property (nonatomic, retain) UIViewController *homeVC;
  15. @property (nonatomic, assign)NSInteger type;//1实操/2模拟
  16. -(void)scanBlock:(MyBlockType)block;
  17. @end