allez
2023-12-19 7e4d73ba93c6c44f2367408d135fffeb111d80fe
0312 咪噜监听sdk退出
1个文件已修改
15 ■■■■■ 已修改文件
Channel/IOS/mlgtgame/Plugins/The2thWorldSDK/UniversalSDK.mm 15 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Channel/IOS/mlgtgame/Plugins/The2thWorldSDK/UniversalSDK.mm
@@ -29,6 +29,9 @@
static NSThread* _thread;
-(id)init
{
     self = [super init];
@@ -83,6 +86,18 @@
                                      _userAgent,@"userAgent",nil];
        [self SendMessageToUnity:_dict];
        }];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(smpcQpLogoutResult:) name:MYLoginOutResultNotification object:nil];
}
- (void)smpcQpLogoutResult:(NSNotification *)notify {
    NSLog(@"sdk请求退出");
    //注销成功
    NSDictionary *_dict = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithInt:S2U_FreePlatformLogoutOk], @"code", nil];
    [self SendMessageToUnity:_dict];
}
-(void)SendMessageToUnity:(NSDictionary*)dict