I am writing a simple application that loads into the status bar and when clicked it opens a popover under the status bar icon. I am using storyboards to define the UI I like to show in my popover. The thing is as soon as I instantiate the storyboard a window opens up. How can I prevent that? This is the code in my application delegate:
func applicationDidFinishLaunching(aNotification: NSNotification) {
let mainBoard = NSStoryboard(name: "MainBoard", bundle: nil)
}