12345678910111213141516171819 |
- //
- // LightingAndSoundVC.h
- // jiaPei
- //
- // Created by apple on 16/1/17.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface LightingAndSoundVC : UIViewController
- /**判断是灯光操作还是语音模拟
- lighting: 4 sound: 5
- */
- @property (nonatomic, assign) NSInteger styleTag;
- @end
|