Ive looked around for other answers, but nothing seems to help my case.
I have a viewController class that contains an IBAction button for a button. This button should open the NSOpenPanel as a sheet from this viewController:
class ViewController: NSViewController { @IBAction func folderSelection(sender: AnyObject) { var myFiledialog: NSOpenPanel = NSOpenPanel() myFiledialog.prompt = "Select path" myFiledialog.worksWhenModal = true myFiledialog.allowsMultipleSelection = false myFiledialog.canChooseDirectories = true myFiledialog.canChooseFiles = false myFiledialog.resolvesAliases = true
The problem arises from myFileDialog.beginSheetModalForWindow (..), it works with the line above, but this is not a sheet effect
source share