Files
yinmeng-ios/xplan-ios/Main/RTC/RtcDelegate.h
2022-05-13 16:14:47 +08:00

21 lines
299 B
Objective-C

//
// RTCDelegate.h
// xplan-ios
//
// Created by zu on 2021/10/19.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@protocol RtcDelegate <NSObject>
/**
当前正在讲话的用户回调。
*/
- (void)usersSpeaking:(NSMutableArray * _Nullable)uids;
@end
NS_ASSUME_NONNULL_END