cocos2d中pushScene后UIKit控件可见

发布于 2024-12-11 16:41:53 字数 221 浏览 0 评论 0原文

我有一个包含两个 UIKit 控件的场景:UITextView。但是从这个场景中,用户有可能去另一个场景检查某些内容并返回。在pushScene之后,UIKit控件在屏幕上仍然可见,用户可以点击它们并编辑它们。

我怎样才能摆脱它们,使它们在pushScene之后不可见? 我不想删除一个场景并添加另一个场景,因为我想保留其中发生的任何事情,这也意味着在用户执行 popScene 后我无法释放控件并创建新的控件。

I've got a scene with two UIKit controls: UITextView. But from this scene, user has possibility to go to another scene to check something and come back. After pushScene the UIKit controls are still visible on screen and user can tap on them and edit them.

How can I get rid of them so that they are not visible after pushScene?
I don't want to remove one scene and add another, as I want to maintain whatever happened in it, this also means I cannot release the controls and create new ones after user does popScene.

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

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

发布评论

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

评论(1

伤感在游骋 2024-12-18 16:41:53

调用pushScene时,将UITextViews设置为隐藏:

myTextView.hidden = YES;

弹出推送的场景后,只需再次取消隐藏文本字段即可。隐藏时,UIView 不接收输入事件,但它们保留在视图层次结构中。

When calling pushScene, set the UITextViews as hidden:

myTextView.hidden = YES;

After popping the pushed scene simply unhide the text fields again. While hidden, UIViews don't receive input events but they remain in the view hierarchy.

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