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