显示键盘时,presentModalView 全屏视图向左移动

发布于 2024-11-13 06:50:25 字数 569 浏览 4 评论 0原文

我有一个作为模式视图控制器呈现的登录页面,当 UITextField 成为纵向模式下的第一个响应者时,视图会向左移动。我想知道这是为什么呢? 在此处输入图像描述

在此处输入图像描述

代码非常简单:

LoginViewController* lvc = [[LoginViewController alloc] init];
    lvc.delegate = self;
 [self.parentViewController presentModalViewController:lvc animated:YES];
 [lvc release];  

这是在一个名为 OptionsViewController 的 UIViewController 内,它也以 modalViewController 的形式呈现。所以基本上我是从 modalViewController 呈现 modalViewController

I have a login page presented as a modal view controller and when the UITextField become the first responder under portrait mode the view shifts to the left. I wonder why is this?
enter image description here

enter image description here

The code is very simple:

LoginViewController* lvc = [[LoginViewController alloc] init];
    lvc.delegate = self;
 [self.parentViewController presentModalViewController:lvc animated:YES];
 [lvc release];  

This is inside a UIViewController called OptionsViewController which is presented as a modalViewController as well. So basically I am presenting a modalViewController from a modalViewController

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

颜漓半夏 2024-11-20 06:50:25

如果您在第二张图片上清楚地看到,当键盘出现时有一个 tableView,并且登录视图控制器(该视图)似乎由于表的问题而导致问题。

您已经从代码中的某个位置初始化了 tableView (或者)我的猜测是您已经创建了登录视图控制器以及另一个 TableView 控制器 .xib 接口...所以请检查您的代码。

如果您的代码中没有 tableView 初始化...那么请尝试执行以下步骤。

  1. 删除 nib 文件。
  2. 创建一个具有相同视图的新视图,并明确遵循相同的程序,请随时向我们通报结果。

If you see clearly on the second image, there is a tableView when the keyboard comes up and the login view controller (that view) seems to causing problems because of the issues with the table.

Either you have initialized a tableView from somewhere in the code (or) my guess is that you have created the login view controller along with another TableView controller .xib interface... So please check your code.

If there is no tableView initialization on your code ... then try following these steps.

  1. Delete the nib file.
  2. Create a new fresh one with the same view and clearly follow the same procedure and please keep us posted on the outcome.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文