我不完全理解sendSubviewToBack。请看代码
你可以看到我的 xib 文件截图。
我在 viewDidLoad 中做了一些操作,
-(void) viewDidLoad
{
[smallView removeFromSuperview];
[bigView sendSubviewToBack:smallView];
}
层次结构是否会从 view->bigView->smallView 更改为 view ->小视图->大视图?
You can see my screenshot of xib's file.
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,层次结构不会受到影响。 文档 说:
它改变了绘制子视图的顺序。如果您有两个重叠的视图并且具有相同的超级视图,那么您将能够定义这两个视图中的哪一个应该在前面。
No the hierarchy will not be affected. The documentation says:
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.