运行我的应用时未调用local::lib
。
这是我applicationDidFinishLaunching
班的代码:
AppDelegate
我正在为我的应用使用 Swift 3 和 storyboards 。
applicationDidFinishLaunching - not triggering的答案建议将@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
let statusItem = NSStatusBar.system().statusItem(withLength: NSSquareStatusItemLength)
func applicationDidFinishLaunching(_ aNotification: Notification) {
// Insert code here to initialize your application
}
func applicationWillTerminate(_ aNotification: Notification) {
// Insert code here to tear down your application
}
}
连接到故事板中的应用程序对象。我那里没有任何应用程序对象。
我的应用程序没有主菜单,它是代理商,因为我正在尝试构建与聚光灯类似的东西。
如何让AppDelegate.swift
运行?