gpt4 book ai didi

ios - 通过隐藏和显示 View 在 iMessage 应用程序中使用不同的 View

转载 作者:行者123 更新时间:2023-12-05 05:40:08 24 4
gpt4 key购买 nike

我目前正在编写一个 iMessage 应用程序。我已经在消息 View Controller 中实现了5 个 View 。我总是想根据我所处的游戏状态显示一个并隐藏另外 4 个。我在消息中添加了一个 URL 组件,但我没有成功根据 URL 的路径更改 View 隐藏我我在。例如:

base URL: "apple.com/" should show the first view
second URL: "apple.com/secondView/" should show the second view

我有一个问题,就是没有太多关于 iMessage 应用程序的信息。我想要像 GamePigeon 一样的行为,但我在 View 导航方面遇到了问题。有没有人经历过并帮助我?

非常感谢!

最佳答案

我通过从 MessagesViewController 创建 Segues 并为不同消息 url 的状态调用它们来解决它。

override func willBecomeActive(with conversation: MSConversation) {

super.willBecomeActive(with: conversation)


if let url = conversation.selectedMessage?.url {
if(url = firstURL {
self.performSegue(withIdentifier: "YourSegueIdentifier", sender: self)
}

}
}

关于ios - 通过隐藏和显示 View 在 iMessage 应用程序中使用不同的 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72472795/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com