// // NIMSessionAudioCententView.h // NIMKit // // Created by chris. // Copyright (c) 2015年 Netease. All rights reserved. // #import "NIMSessionMessageContentView.h" @protocol NIMPlayAudioUIDelegate -(void)startPlayingAudioUI; //点击一开始就要显示 @optional - (void)retryDownloadMsg; //重收消息 @end @interface NIMSessionAudioContentView : NIMSessionMessageContentView @property (nonatomic, strong) UILabel *audioDurationLable; //语音时长 @property (nonatomic, weak) id audioUIDelegate; - (void)setPlaying:(BOOL)isPlaying; @end