NIMSessionAudioContentView.h 598 B

12345678910111213141516171819202122232425
  1. //
  2. // NIMSessionAudioCententView.h
  3. // NIMKit
  4. //
  5. // Created by chris.
  6. // Copyright (c) 2015年 Netease. All rights reserved.
  7. //
  8. #import "NIMSessionMessageContentView.h"
  9. @protocol NIMPlayAudioUIDelegate <NSObject>
  10. -(void)startPlayingAudioUI; //点击一开始就要显示
  11. @optional
  12. - (void)retryDownloadMsg; //重收消息
  13. @end
  14. @interface NIMSessionAudioContentView : NIMSessionMessageContentView
  15. @property (nonatomic, strong) UILabel *audioDurationLable; //语音时长
  16. @property (nonatomic, weak) id<NIMPlayAudioUIDelegate> audioUIDelegate;
  17. - (void)setPlaying:(BOOL)isPlaying;
  18. @end