This commit is contained in:
lianxiang
2018-09-10 19:59:09 +08:00
parent 7685ce516e
commit 86f8824e14
21 changed files with 177 additions and 35 deletions
+8 -1
View File
@@ -9,6 +9,7 @@
#import "GiSysSettingsVC.h"
#import "GiGaSettingsViewCell.h"
#import "JXTAlertController.h"
#import "GiGaUserDefault.h"
@interface GiSysSettingsVC ()
@@ -108,6 +109,7 @@
case 1:
{
GILog(@"退出登录");
[self userlogOut];
}
break;
@@ -115,8 +117,13 @@
GILog(@"取消");
break;
}
}];
}
-(void)userlogOut{
[GiGaUserDefault userLogOut];
[self.navigationController popToRootViewControllerAnimated:YES];
}
@end