CWVoiceChangePlayCell.h 636 B

1234567891011121314151617181920212223242526
  1. //
  2. // CWVoiceChangePlayCell.h
  3. // QQVoiceDemo
  4. //
  5. // Created by chavez on 2017/10/11.
  6. // Copyright © 2017年 陈旺. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface CWVoiceChangePlayCell : UIView
  10. @property (nonatomic,copy) NSString *voicePath;
  11. @property (nonatomic,strong) NSIndexPath *indexPath;
  12. @property (nonatomic,copy) NSString *imageName;
  13. @property (nonatomic,copy) NSString *title;
  14. @property (nonatomic,copy) void (^playRecordBlock)(CWVoiceChangePlayCell *cell);
  15. @property (nonatomic,copy) void (^endPlayBlock)(CWVoiceChangePlayCell *cell);
  16. - (void)playingRecord;
  17. - (void)updateLevels;
  18. - (void)endPlay;
  19. @end