This commit is contained in:
2025-12-03 16:45:58 +08:00
parent d06e0499bc
commit c1c4c85bd2
5 changed files with 165 additions and 10 deletions

View File

@@ -10,6 +10,7 @@
#import <AuthenticationServices/AuthenticationServices.h>
#import "KBLoginVM.h"
#import "AppDelegate.h"
#import "KBRegistVerEmailVC.h"
@interface KBEmailRegistVC () <UITextViewDelegate, UITextFieldDelegate>
@@ -262,6 +263,13 @@
KBLOG(@"onTapSubmit email=%@, password length=%zd",
self.emailTextField.text,
self.passwordTextField.text.length);
KBRegistVerEmailVC *vc = [[KBRegistVerEmailVC alloc] init];
UINavigationController *nav = KB_CURRENT_NAV;
if ([nav isKindOfClass:[BaseNavigationController class]]) {
[(BaseNavigationController *)nav kb_pushViewControllerRemovingSameClass:vc animated:YES];
} else {
[nav pushViewController:vc animated:YES];
}
}
- (void)onTapForgotPassword {