NTESSessionFileStatusProtocol.h 417 B

12345678910111213141516171819202122
  1. //
  2. // NTESSessionFileTransDelegate.h
  3. // NIMDemo
  4. //
  5. // Created by ght on 15-1-29.
  6. // Copyright (c) 2015年 Netease. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. /**
  10. * 图片 视频等上传进度 和 语音播放等子状态回调
  11. */
  12. @protocol NTESSessionFileStatusProtocol <NSObject>
  13. @optional
  14. - (void)updateMsgSubStatusByAudio:(NSInteger)status;
  15. - (void)updateProgress:(float)progress;
  16. @end