1
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user