修改人设长按排序后,键盘人设要同步问题

This commit is contained in:
2026-01-07 19:05:52 +08:00
parent e858d35722
commit bdf2a9af80
2 changed files with 9 additions and 1 deletions

View File

@@ -37,6 +37,10 @@
[self kb_updateBackButtonVisibility]; [self kb_updateBackButtonVisibility];
} }
- (void)dealloc{
KBLOG(@"页面销毁 -- 💥💥 -- %@",[self class]);
}
#pragma mark - Custom NavBar #pragma mark - Custom NavBar

View File

@@ -307,7 +307,11 @@ static NSString * const kKBMyKeyboardCellId = @"kKBMyKeyboardCellId";
[KBHUD showInfo:msg]; [KBHUD showInfo:msg];
return; return;
} }
[self.viewModel fetchCharacterListByUserWithCompletion:^(NSArray<KBCharacter *> * _Nonnull characterArray, NSError * _Nullable error) {
if (error) {
NSLog(@"[KBHomeVM] refresh user characters failed: %@", error);
}
}];
if (showHUD) { if (showHUD) {
[KBHUD showSuccess:KBLocalized(@"Saved")]; [KBHUD showSuccess:KBLocalized(@"Saved")];
} }