WFCUVoiceCell.h 506 B

12345678910111213141516171819
  1. //
  2. // VoiceCell.h
  3. // WFChat UIKit
  4. //
  5. // Created by WF Chat on 2017/9/9.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import "WFCUMediaMessageCell.h"
  9. #define kVoiceMessageStartPlaying @"kVoiceMessageStartPlaying"
  10. #define kVoiceMessagePlayStoped @"kVoiceMessagePlayStoped"
  11. @interface WFCUVoiceCell : WFCUMediaMessageCell
  12. @property (nonatomic, strong)UIImageView *voiceBtn;
  13. @property (nonatomic, strong)UILabel *durationLabel;
  14. @property (nonatomic, strong)UIView *unplayedView;
  15. @end