How to open a NSPopover at a distance from the system bar?
问题 I'm opening a NSPopover with the action of an icon in the status bar. myPopover.show(relativeTo: button.bounds, of: button, preferredEdge: NSRectEdge.minY) This works fine with the exception that the distance from the popover and the system bar is zero: I'd like to achieve the same result as the Dropbox app which renders the popover at a small distance from the system bar: I've tried using button.bounds.offsetBy(dx: 0.0, dy: 20.0) which doesn't affect the position of the popover and button