12345678910111213141516171819202122 |
- //
- // ScanVC.h
- // jiaPei
- //
- // Created by apple on 16/4/19.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ShiCaoPeriodVC.h"
- @interface ScanVC : UIViewController
- {
- MyBlockType scanBlock;
- }
- @property (nonatomic, retain) UIViewController *homeVC;
- @property (nonatomic, assign)NSInteger type;//1实操/2模拟
- -(void)scanBlock:(MyBlockType)block;
- @end
|