Closed kriscog0114 closed 7 years ago
我有看到BaseRequestAPI中有设置一个isSuccess的属性,并且在 if ([code isEqualToString:@"1023"]) { //账号被顶掉 [[kAppDelegate getCurrentUIVC] AlertWithTitle:nil message:self.message andOthers:@[@"确定"] animated:YES action:nil]; KPostNotification(KNotificationOnKick, nil); }else if([code isEqualToString:@"1039"]){ //token过期 [[kAppDelegate getCurrentUIVC] AlertWithTitle:nil message:self.message andOthers:@[@"确定"] animated:YES action:nil]; KPostNotification(KNotificationOnKick, nil); } 代码里设置了退出登录的通知,但是这个方法是怎么调用的,如何实现的?
两种方案:
我有看到BaseRequestAPI中有设置一个isSuccess的属性,并且在 if ([code isEqualToString:@"1023"]) { //账号被顶掉 [[kAppDelegate getCurrentUIVC] AlertWithTitle:nil message:self.message andOthers:@[@"确定"] animated:YES action:nil]; KPostNotification(KNotificationOnKick, nil); }else if([code isEqualToString:@"1039"]){ //token过期 [[kAppDelegate getCurrentUIVC] AlertWithTitle:nil message:self.message andOthers:@[@"确定"] animated:YES action:nil]; KPostNotification(KNotificationOnKick, nil); } 代码里设置了退出登录的通知,但是这个方法是怎么调用的,如何实现的?