作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
SoundControoler 是我当前所在的 UIViewControlloer,我需要获取 GameScene,它是一个 Skcene。
代码:
import AVFoundation
import Foundation
import SpriteKit
import GameKit
import UIKit
import iAd
class SoundController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
}
我知道如何从 SKcene 转到 UIViewController(SoundBoardController),但不知道如何反过来操作。下面是我用来从 SKcene 转到 ViewController 的代码。
func GotoSoundBoard(){
var vc: UIViewController = UIViewController()
vc = self.view!.window!.rootViewController!
vc.performSegueWithIdentifier("SoundSegue", sender: vc)
}
下面是我需要到达的 SKcene
import AVFoundation
import Foundation
import SpriteKit
import GameKit
import UIKit
class GameScene: SKScene {
override func didMoveToView(view: SKView) {
}
}
最佳答案
您想要查看展开转场。之前已经问过。看看this Stack Overflow question .
关于swift - 如何从 UIViewController 到场景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32610896/
我是一名优秀的程序员,十分优秀!