Skip to content

Instantly share code, notes, and snippets.

@harrtho
Created November 14, 2017 18:08
Show Gist options
  • Save harrtho/8d1fa1778df2b513314ef00be8df897a to your computer and use it in GitHub Desktop.
Save harrtho/8d1fa1778df2b513314ef00be8df897a to your computer and use it in GitHub Desktop.
// Set the window standard button properties
// Hidde the window close button
self.window?.standardWindowButton(NSWindowButton.closeButton)?.isHidden = true
// Hidde the windwo miniaturize button
self.window?.standardWindowButton(NSWindowButton.miniaturizeButton)?.isHidden = true
// Hidde the window zoom button
self.window?.standardWindowButton(NSWindowButton.zoomButton)?.isHidden = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment