diff --git a/QXLive.xcworkspace/xcuserdata/qixing.xcuserdatad/UserInterfaceState.xcuserstate b/QXLive.xcworkspace/xcuserdata/qixing.xcuserdatad/UserInterfaceState.xcuserstate index ddb2ff3..e82e3ec 100644 Binary files a/QXLive.xcworkspace/xcuserdata/qixing.xcuserdatad/UserInterfaceState.xcuserstate and b/QXLive.xcworkspace/xcuserdata/qixing.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/TUIKit/TUIChat/UI_Classic/Input/TUIInputBar.m b/TUIKit/TUIChat/UI_Classic/Input/TUIInputBar.m index 8bf5876..99fde1c 100644 --- a/TUIKit/TUIChat/UI_Classic/Input/TUIInputBar.m +++ b/TUIKit/TUIChat/UI_Classic/Input/TUIInputBar.m @@ -358,7 +358,10 @@ NSString *title = [NSString stringWithFormat:@"充值不足%@元,您无法发送消息",canChatMoney]; UIAlertController *al = [UIAlertController alertControllerWithTitle:title message:@"" preferredStyle:(UIAlertControllerStyleAlert)]; [al addAction:[UIAlertAction actionWithTitle:@"去充值" style:(UIAlertActionStyleDefault) handler:^(UIAlertAction * _Nonnull action) { - [na pushViewController:[[NSClassFromString(@"QXRechargeViewcController") alloc] init] animated:YES]; + UIViewController *vc = [[NSClassFromString(@"QXRechargeViewcController") alloc] init]; + UINavigationController *naV = [[UINavigationController alloc] initWithRootViewController:vc]; + naV.modalPresentationStyle = UIModalPresentationFullScreen; + [na presentViewController:naV animated:YES completion:nil]; }]]; [al addAction:[UIAlertAction actionWithTitle:@"取消" style:(UIAlertActionStyleCancel) handler:^(UIAlertAction * _Nonnull action) {