| 12345678910111213141516171819202122232425262728 |
- //
- // CWVoiceView.h
- // QQVoiceDemo
- //
- // Created by 陈旺 on 2017/9/2.
- // Copyright © 2017年 陈旺. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef NS_ENUM(NSInteger,CWVoiceState) {
- CWVoiceStateDefault = 0, // 默认状态
- CWVoiceStateRecord, // 录音
- CWVoiceStatePlay // 播放
- } ;
- @interface CWVoiceView : UIView
- @property (nonatomic,assign) CWVoiceState state;
- @end
|