| | |
| | | static NSThread* _thread;
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | | -(id)init
|
| | | {
|
| | | self = [super init];
|
| | |
| | | _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
|