完善用户信息的页面的 补全

This commit is contained in:
fengshuo
2021-09-15 18:41:40 +08:00
parent 3b843a1f2c
commit 1ab86a751b
25 changed files with 377 additions and 126 deletions

View File

@@ -127,10 +127,18 @@
}];
}
- (void)disMissVC {
UIViewController *vc = self.presentingViewController;
while (vc.presentingViewController) {
vc = vc.presentingViewController;
}
[vc dismissViewControllerAnimated:YES completion:nil];
[self.navigationController popToRootViewControllerAnimated:NO];
}
#pragma mark - LoginPasswordProtocol
- (void)phoneAndPasswordLoginSuccess {
[self showSuccessToast:@"登录成功"];
[self.navigationController popToRootViewControllerAnimated:YES];
[self disMissVC];
}
#pragma mark - Getters And Setters