返回主视图

发布于 2024-11-03 10:37:13 字数 100 浏览 1 评论 0原文

你好 我有一个主视图,并通过添加子视图添加另一个视图。然后我添加第三个视图和添加子视图。现在我想回到主视图。我该怎么做? (我不能使用 addsubview:view 或 _view)

Hello
I have a main view and I add another view with add subview. Then I add and 3rd view with add subview. Now I want to go back on the main view. How will I do that?
(I cant use addsubview:view or _view)

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

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

发布评论

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

评论(1

自控 2024-11-10 10:37:13

我不太确定“返回”主视图是什么意思,但您可以通过委托向您的超级视图发送消息。只需在子视图中设置一个委托,并在将其添加为子视图并释放它时将其设置为 self 。

如果“返回”意味着删除所有子视图,那么只需从每个子视图中调用 -removeFromSuperview 就可以了:)

I'm not exactely sure what you mean by "going back" to the mainview, but you can send messages to your superview via delegation. Just set a delegate in your subview and set it to self upon adding it as a subview and releasing it.

If by "going back" you mean removing all subviews, then just call -removeFromSuperview from every subview and you should be fine :)

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