使用Xcode 6中的Storyboard的AppDelegate for Cocoa应用程序

我有一个现有的OS X应用程序,在转换为Storyboards作为主界面后,我的app代理不再被使用.之前,MainMenu.xib有一个“App Delegate”对象,我可以将它的类设置为我的app delegate.但是,Storyboard不包含此类对象.

如何恢复AppDelegate并保留故事板?我觉得我错过了一些明显的东西.

解决方法

如果您没有将它指定为基于文档的应用程序,Xcode将创建一个AppDelegate.swift类并在应用程序场景中为您连接它.

截至目前(Xcode Beta-2),新的基于文档的应用程序没有附带存根AppDelegate.swift文件.相反,有ViewController.swift和Document.swift.更糟糕的是,Document.swift文件错误地为文档实例化了相同的Main.storyboard.

这是我开始工作的一种方式:

>创建一个AppDelegate类(例如:采用NSApplicationDelegate协议的NSObject)
>将Object对象从Object库拖到Main.storyboard的Application Scene中,并将其设置为AppDelegate类.
>从Application Scene中的Application对象控制拖动到AppDelegate对象,并连接其委托.
>从Main.storyboard中删除其他所有内容,并为“文档”窗口创建一个新的Document.storyboard.更改Document.swift文件以实例化该Storyboard而不是Main.
>如果除了文档窗口之外还想要一个主应用程序窗口和/或首选项窗口,请为这些窗口创建Application.storyboard和/或Preferences.storyboard,并使用AppDelegate类对它们进行实例化.这样,AppDelegate可以自定义主窗口外观并执行其他方便的操作,包括接收从应用程序中的任何窗口发送的IBActions.

以下是基于文档的应用程序的AppDelegate.swift文件的工作示例,该应用程序还具有单独的主要应用程序窗口和非模态首选项窗口:

//  AppDelegate.swift

import Cocoa

class AppDelegate: NSObject,NSApplicationDelegate {

    //init() {   
    //    super.init() 
    // remove this if you don't use it
    //}

    var application: NSApplication? = nil
    func applicationDidFinishLaunching(notification: NSNotification) {
        application = notification.object as? NSApplication

        let path = NSBundle.mainBundle().pathForResource("Defaults",ofType: "plist")
        let defaults = NSDictionary(contentsOfFile:path)
        NSUserDefaults.standardUserDefaults().registerDefaults(defaults)
        NSUserDefaultsController.sharedUserDefaultsController().initialValues = defaults
        NSUserDefaultsController.sharedUserDefaultsController().appliesImmediately = true

    }

    func applicationDidBecomeActive(notification: NSNotification) {
        if application?.orderedDocuments?.count < 1 { showApplication(self) }
    }

    //func applicationWillFinishLaunching(notification: NSNotification) {
        // remove this if you don't use it
     //}

    func applicationWillTerminate(notification: NSNotification) {
       NSUserDefaults.standardUserDefaults().synchronize()

    }

    func applicationShouldOpenUntitledFile(app: NSApplication) -> Bool { return false }

    func applicationShouldTerminateAfterLastwindowClosed(app: NSApplication) -> Bool { return false }

    var applicationController: NSWindowController?
    @IBAction func showApplication(sender : AnyObject) {
        if !applicationController {

            let storyboard = nsstoryboard(name: "Application",bundle: nil)
            applicationController = storyboard.instantiateInitialController() as? NSWindowController
            if let window = applicationController?.window {
                window.titlebarappearsTransparent = true
                window.titleVisibility = NSWindowTitleVisibility.Hidden
                window.styleMask |= NSFullSizeContentViewWindowMask
            }


        }
        if applicationController { applicationController!.showWindow(sender) }
    }

    var preferencesController: NSWindowController?
    @IBAction func showPreferences(sender : AnyObject) {
        if !preferencesController {
            let storyboard = nsstoryboard(name: "Preferences",bundle: nil)
            preferencesController = storyboard.instantiateInitialController() as? NSWindowController
        }
        if preferencesController { preferencesController!.showWindow(sender) }
    }

}

相关文章

UITabBarController 是 iOS 中用于管理和显示选项卡界面的一...
UITableView的重用机制避免了频繁创建和销毁单元格的开销,使...
Objective-C中,类的实例变量(instance variables)和属性(...
从内存管理的角度来看,block可以作为方法的传入参数是因为b...
WKWebView 是 iOS 开发中用于显示网页内容的组件,它是在 iO...
OC中常用的多线程编程技术: 1. NSThread NSThread是Objecti...