ios - 如何以编程方式更改将在加载时显示的 swift 文件?

标签 ios xcode swift sprite-kit

我有三个不同的 .swift 文件,GameScene.swift、GameOverScene.swift 和 StartScene.swift。当我打开我的应用程序时,GameScene 出现了。我如何更改它以便 StartScene.swift 是第一个显示的文件?我一直在代码中工作,所以没有 Storyboard的方法会很好。感谢您的帮助!

编辑: 我觉得我必须更改 GameViewController.swift 中的某些内容,所以这里是代码。

extension SKNode {
class func unarchiveFromFile(file : String) -> SKNode? {
    if let path = NSBundle.mainBundle().pathForResource(file, ofType: "sks") {
        var sceneData = NSData(contentsOfFile: path, options: .DataReadingMappedIfSafe, error: nil)!
        var archiver = NSKeyedUnarchiver(forReadingWithData: sceneData)

        archiver.setClass(self.classForKeyedUnarchiver(), forClassName: "SKScene")
        let scene = archiver.decodeObjectForKey(NSKeyedArchiveRootObjectKey) as! GameScene
        archiver.finishDecoding()
        return scene
    } else {
        return nil
    }
}
}

class GameViewController: UIViewController {

override func viewDidLoad() {
    super.viewDidLoad()

    NSNotificationCenter.defaultCenter().addObserver(self, selector: Selector("pauseTimers:"), name:UIApplicationWillResignActiveNotification, object: nil)

    NSNotificationCenter.defaultCenter().addObserver(self, selector: Selector("startTimers:"), name:UIApplicationDidBecomeActiveNotification, object: nil)


    if let scene = GameScene.unarchiveFromFile("GameScene") as? GameScene {
        // Configure the view.
        let skView = self.view as! SKView
        skView.showsFPS = true
        skView.showsNodeCount = true

        /* Sprite Kit applies additional optimizations to improve rendering performance */
        skView.ignoresSiblingOrder = true

        /* Set the scale mode to scale to fit the window */
        scene.size = skView.bounds.size
        scene.scaleMode = .AspectFill

        skView.presentScene(scene)
    }
}
func pauseTimers(notification : NSNotification) {
    println("Observer method called")
    timer.invalidate()
    scoretimer.invalidate()
    supertimer.invalidate()
}

func startTimers(notification : NSNotification) {
    println("Observer method called")
    timerRecreate = true
    timerz = false
}

override func shouldAutorotate() -> Bool {
    return false
}

override func supportedInterfaceOrientations() -> Int {
    if UIDevice.currentDevice().userInterfaceIdiom == .Phone {
        return Int(UIInterfaceOrientationMask.AllButUpsideDown.rawValue)
    } else {
        return Int(UIInterfaceOrientationMask.All.rawValue)
    }
}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Release any cached data, images, etc that aren't in use.
}

override func prefersStatusBarHidden() -> Bool {
    return true
}
}

我尝试将游戏场景中的所有内容更改为 StartScene,但这没有用。

文件列表如下: enter image description here 这是我的应用委托(delegate):

import UIKit

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

var window: UIWindow?


func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
    // Override point for customization after application launch.
    return true
}

func applicationWillResignActive(application: UIApplication) {
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 

}

func applicationDidEnterBackground(application: UIApplication) {
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}

func applicationWillEnterForeground(application: UIApplication) {
    // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
}

func applicationDidBecomeActive(application: UIApplication) {
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.

}

func applicationWillTerminate(application: UIApplication) {
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}


}

编辑:

我尝试在下面的帖子中实现第二种方法,但出现了三个错误。 enter image description here

最佳答案

使用 Storyboard进入你的应用委托(delegate)并寻找这个方法

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject :AnyObject]?) -> Bool {
   self.window = UIWindow(frame: UIScreen.mainScreen().bounds)

    var storyboard = UIStoryboard(name: "Main", bundle: nil)

    var initialViewController = storyboard.instantiateViewControllerWithIdentifier("ViewController") as UIViewController

    self.window?.rootViewController = initialViewController
    self.window?.makeKeyAndVisible()
  }

如果你没有使用 Storyboard

window: UIWindow? 
var initialViewController :StartScene?
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject :AnyObject]?) -> Bool {

   initialViewController  = StartScene(nibName:"StartScene",bundle:nil)

    let frame = UIScreen.mainScreen().bounds
    window = UIWindow(frame: frame)

    window!.rootViewController = initialViewController
    window!.makeKeyAndVisible()
              ...
}

关于ios - 如何以编程方式更改将在加载时显示的 swift 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31521893/

相关文章:

iphone - 代码正确时,UILabel 中的删除键不起作用

ios - 真实的 iOS 设备和 Watch Simulator 是否可以出于测试目的进行通信

ios - 如何在 swift 4 中使用 fontAwesome 将自定义图标添加到 UIbutton

ios - 代码;如何从另一个 ViewController 调用 AppDelegate 中的函数

ios - Apple Watch 中的本地通知

ios - 我在 MacOSX 10.7.x 上找不到 libtool 命令

ios - 从后台返回后 UIView 动画被阻止 ios8 (Rubymotion)

ios - 无效的 Swift 支持 - 文件不匹配

ios - Xcode 不会在开发人员门户上自动创建应用程序 ID

ios - 如何在 swift 4.1 和 xcode 9.3 中使用 JSONDecoder 解码嵌套的 JSON 数组和对象?