CWVoiceView.h 423 B

12345678910111213141516171819202122232425262728
  1. //
  2. // CWVoiceView.h
  3. // QQVoiceDemo
  4. //
  5. // Created by 陈旺 on 2017/9/2.
  6. // Copyright © 2017年 陈旺. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef NS_ENUM(NSInteger,CWVoiceState) {
  10. CWVoiceStateDefault = 0, // 默认状态
  11. CWVoiceStateRecord, // 录音
  12. CWVoiceStatePlay // 播放
  13. } ;
  14. @interface CWVoiceView : UIView
  15. @property (nonatomic,assign) CWVoiceState state;
  16. @end