2

I created a bottom bar by doing:

window.setContentBorderThickness(24.0, forEdge: NSRectEdge.MinY)

Is it possible to add a button into the bottom border?

fredsco
  • 313
  • 4
  • 19

1 Answers1

2

The bottom border is just a background, to add views to It, just add them to the bottom edge of the window's contentView. You can do that in Interface Builder.

Sample project

enter image description here

Guilherme Rambo
  • 2,018
  • 17
  • 19