This commit is contained in:
2025-12-04 21:53:47 +08:00
parent f7d11c5f8b
commit d2258883df
5 changed files with 20 additions and 10 deletions

View File

@@ -165,7 +165,10 @@ static NSString * const kKBSessionInstallFlagKey = @"KBSession.installInitialize
- (void)goLoginVC{
KBLoginVC *vc = [[KBLoginVC alloc] init];
[KB_CURRENT_NAV pushViewController:vc animated:true];
UINavigationController *nav = KB_CURRENT_NAV;
if (nav) {
[nav pushViewController:vc animated:YES];
}
}
@end