NIMKitAudioCenter.h 364 B

1234567891011121314151617181920
  1. //
  2. // NIMKitAudioCenter.h
  3. // NIMKit
  4. //
  5. // Created by chris on 2017/1/13.
  6. // Copyright © 2017年 NetEase. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class NIMMessage;
  10. @interface NIMKitAudioCenter : NSObject
  11. @property (nonatomic,strong) NIMMessage *currentPlayingMessage;
  12. + (instancetype)instance;
  13. - (void)play:(NIMMessage *)message;
  14. @end