gpt4 book ai didi

ios - 如何转换Class类型?

转载 作者:行者123 更新时间:2023-11-30 13:06:12 27 4
gpt4 key购买 nike

我正在尝试弄清楚如何转换类类型,以便我可以从“self”的 SKScene 转换为 GamePlay 的 SCNScene。并基本上执行场景正常的场景转换。

enter image description here代码:

let scene = GamePlay(coder:NSCoder())
let transition = SKTransition.crossFadeWithDuration(1)
view?.presentScene(scene, transition: transition)

最佳答案

尝试将您的场景转换到SKScene

 let scene = GamePlay(coder:NSCoder())
let transition = SKTransition.crossFadeWithDuration(1)
if let skScene = scene as? SKScene {
view?.presentScene(skScene, transition: transition)
}

关于ios - 如何转换Class类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39328681/

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