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