This commit is contained in:
2025-12-03 16:38:20 +08:00
parent 49f730b609
commit d06e0499bc
6 changed files with 296 additions and 11 deletions

View File

@@ -7,6 +7,7 @@
#import "KBForgetVerPwdVC.h"
#import "CRBoxInputView.h"
#import "KBForgetPwdNewPwdVC.h"
@interface KBForgetVerPwdVC ()
@@ -74,6 +75,13 @@
}
KBLOG(@"KBVerPwdVC next step with code=%@", code);
// TODO:
KBForgetPwdNewPwdVC *vc = [[KBForgetPwdNewPwdVC 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];
}
}
#pragma mark - Lazy UI
@@ -122,6 +130,7 @@
prop.cornerRadius = 8.0;
prop.cellBgColorNormal = [UIColor colorWithHex:0xF7F7F7];
prop.cellBgColorSelected = [UIColor colorWithHex:0xE0F5F2];
prop.cellCursorColor = [UIColor colorWithHex:KBBlackValue];
prop.cellFont = [KBFont bold:20];
prop.cellTextColor = [UIColor colorWithHex:KBBlackValue];
_codeInputView.customCellProperty = prop;