自动调整第二个视图大小时出现问题

发布于 2024-08-27 02:07:41 字数 129 浏览 8 评论 0原文

一旦从 appdelegate 调用视图,它就会正确加载,但不会正确自动调整大小,在底部您会看到上一个视图的最后几行!在 xib 文件中,视图模式属性设置为缩放以填充,但我尝试了其他方法,但仍然发生同样的情况...感谢您提供任何解决问题的想法!

Once a view is called from appdelegate, it is properly loaded but not autosized correctly, on the bottom you see last lines from previous view! On xib file, view mode property is set to scale to fill but I tried others and still happening the same... Thanks for any idea to solve it!

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

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

发布评论

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

评论(2

风柔一江水 2024-09-03 02:07:41

也许检查界面生成器,视图是否使用任何模拟用户界面元素?这并没有直接回答您的问题,但可能值得一看,例如状态栏通常是默认模拟的。

Maybe check Interface Builder, is the view using any of the Simulated User Interface Elements? That isn't directly answering your question but it might be worth a look, e.g. the status bar is normally simulated by default.

揽清风入怀 2024-09-03 02:07:41

控制自动调整大小的标准方法是
self.View.autoresizingMask = UIViewAutoresizingFlexibleHeight(或st.else)
self.View.autoresizesSubviews = YES;

您也可以尝试手动设置大小

The standart way to control autosizing is by
self.View.autoresizingMask = UIViewAutoresizingFlexibleHeight(or st. else)
self.View.autoresizesSubviews = YES;

You might also try to just set the size manually

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