问题描述
解决方案
1.在一个全局存活的类里面监听 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(makeCall:) name:KNOTIFICATION_CALL object:nil];2.实现跳转 - (void)makeCall:(NSNotification*)notify{ if (notify.object) { [self makeCallWithUsername:[notify.object valueForKey:@"chatter"] isVideo:[[notify.object objectForKey:@"type"] boolValue]]; }}具体实现在demo ChatDemoHelper单例类。
时间: 2024-11-17 16:13:36