JXAudioCell.h 622 B

12345678910111213141516171819202122232425
  1. //
  2. // JXAudioCell.h
  3. // shiku_im
  4. //
  5. // Created by Apple on 16/10/10.
  6. // Copyright © 2016年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "JXBaseChatCell.h"
  10. #import <AVFoundation/AVFoundation.h>
  11. @class JXChatViewController;
  12. @interface JXAudioCell : JXBaseChatCell{
  13. // JXAudioPlayer* _audioPlayer;
  14. }
  15. @property (nonatomic,strong) UILabel * timeLen;
  16. @property (nonatomic,strong) UIImageView * voice;
  17. @property (nonatomic,strong) NSArray * array;
  18. @property (nonatomic,strong) JXAudioPlayer* audioPlayer;
  19. @property (nonatomic,copy) NSString *oldFileName;
  20. - (void)timeGo:(NSString *)fileName;
  21. @end