我不完全理解sendSubviewToBack。请看代码

发布于 2024-12-11 10:44:52 字数 324 浏览 0 评论 0原文

你可以看到我的 xib 文件截图。

在此处输入图像描述

我在 viewDidLoad 中做了一些操作,

-(void) viewDidLoad
{
 [smallView removeFromSuperview];
 [bigView sendSubviewToBack:smallView];
}

层次结构是否会从 view->bigView->smallView 更改为 view ->小视图->大视图?

You can see my screenshot of xib's file.

enter image description here

I do some manipulation in viewDidLoad

-(void) viewDidLoad
{
 [smallView removeFromSuperview];
 [bigView sendSubviewToBack:smallView];
}

Will the hierarchy change from view->bigView->smallView to view->smallView->bigView?

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

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

发布评论

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

评论(1

谜兔 2024-12-18 10:44:52

不,层次结构不会受到影响。 文档 说:

发送子视图返回:
移动指定的子视图,使其出现在其同级视图的后面。

它改变了绘制子视图的顺序。如果您有两个重叠的视图并且具有相同的超级视图,那么您将能够定义这两个视图中的哪一个应该在前面。

No the hierarchy will not be affected. The documentation says:

sendSubviewToBack:
Moves the specified subview so that it appears behind its siblings.

It changes the order of painting subviews. If you have two views which are overlapping and have the same superview then you will be able to define which of that two views should be in front.

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