how to stop the double spacing when pasting my code
This is easy: use the menu Paste and Match Style.
You do not show much code, so hard to be sure.
But you should replace
let delegate = OpenSavePanelDelegate() // cannot consolidate with next line
savePanel.delegate = delegate
by
// -->>> REMOVE THIS LINE: let delegate = OpenSavePanelDelegate() // cannot consolidate with next line
savePanel.delegate = self // The class in which this code is
And declare that your class (a viewController probably) conforms to NSOpenSavePanelDelegate
Topic:
UI Frameworks
SubTopic:
AppKit
Tags: