使视图自动调整大小

发布于 2024-09-11 20:05:41 字数 400 浏览 5 评论 0原文

在控制器

scrollView.autoresizesSubviews = YES;

的 viewDidLoad 中,我从 Nib 加载视图对象,

[scrollView addSubview:presentationController.view];

此时,scrollView 本身具有正确的调整大小(位于选项卡视图控制器内)。问题是新加载的视图对象的布局没有更新。

  1. 有什么办法可以让对象调整大小吗?
  2. 我还能在哪里拦截添加子视图后它已经自动调整大小的点,以便我可以在那里添加我的代码?

我需要的是该加载视图的一些额外的布局调整代码,但它应该具有正确的视图大小来应用调整。

in controller

scrollView.autoresizesSubviews = YES;

in viewDidLoad of controller I load view object from Nib and

[scrollView addSubview:presentationController.view];

At this point scrollView itself has correct adjusted sizes(which is within tab view controller). The problem is that the layout of newly loaded view object is not updated.

  1. Is there any way to make the object to resize?
  2. Where else I can intercept the point where after adding subview, it's already auto resized, so I can add my code there?

What I need is some additional layout adjustment code for that loaded view, but it should have correct view size to apply the tweaks.

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

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

发布评论

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

评论(1

您的好友蓝忘机已上羡 2024-09-18 20:05:41

尝试

[scrollView setNeedsLayout];

看看是否有帮助?

Try

[scrollView setNeedsLayout];

and see if that helps?

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