iPad - UITableView 与 UITextField - 方向更改时自动调整大小问题

发布于 2024-11-15 16:24:52 字数 123 浏览 4 评论 0原文

在我的 iPad 拆分视图应用程序中,我在详细视图中也有一个表格视图。每行都有一个文本字段。当方向改变时,表视图中的表字段将扩展到表视图之外。 有人可以告诉我如何设置自动调整大小蒙版,以便即使方向发生变化,文本字段也将位于表视图内?

In my iPad split view application, I've a table view in detailed view as well. Each row has a text field. When orientation changes, the table field in table view is extending out of table view.
Can some one tell me how to set the auto resizing mask so that even when orientation changes, the text fields will be within the table view?

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

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

发布评论

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

评论(1

冰魂雪魄 2024-11-22 16:24:52

如果您将 tableview 添加为 UIViewsubview 那么:

[self.view setAutoresizesSubviews:YES];
[tableView setAutoresizesSubviews:YES]; or set in IB

在创建 cell 时设置如下:

[urcell setAutoresizesSubviews:YES];

如果您添加 < code>textField 作为 cell 的子视图。这样它将在定向时处理其所有子视图

if you add tableview as subview of UIView then:

[self.view setAutoresizesSubviews:YES];
[tableView setAutoresizesSubviews:YES]; or set in IB

while creation of cell set like this:

[urcell setAutoresizesSubviews:YES];

if u add textField as subview of cell. So that it will handle all of its subviews while orientation

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文