// // WebRTCStore.h // AIIM // // Created by gan on 2025/4/16. // #ifndef WebRTCStore_h #define WebRTCStore_h #endif /* WebRTCStore_h */ @protocol WebRTCStoreDelegate @optional - (void)WebRTCStoreAct:(NSDictionary *_Nullable)actData; @end @interface WebRTCStore : NSObject + (WebRTCStore *_Nonnull)shareInstance; @property (nonatomic,weak) id delegate; @property (nonatomic) BOOL isBusy; @property (nonatomic,strong) NSString * _Nullable PeerId; -(void)reciveMsg:(NSDictionary *_Nonnull)msg; @end