put NSToolBar on the bottom of window

531 Views Asked by At

I added a NSToolBar into my window. It is attached to the top of the window, but I need to put down it on the bottom. How can I do it?

1

There are 1 best solutions below

1
On BEST ANSWER

You can't afaik. NSToolbars are only meant to be attached to the top of a window. If you want NSToolbar like functionality at the bottom of the window, it basically means implementing something like it yourself. Besides even if you got NSToolbar to be on the bottom of a window, it'd break with general OS X UI expectations. If your talking about the minimal functionality of implementing custom buttons to trigger actions but along the bottom of a window then thats not hard at all to do yourself.