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?

link|improve this question

69% accept rate
possible duplicate of NSToolbar on bottom of window – Abizern Jan 28 at 10:24
There is no answer on the question, only common words that it isn't easy – Ilya Blokh Jan 28 at 11:15
feedback

1 Answer

up vote 1 down vote accepted

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.

link|improve this answer
Strange :) Okay, I just replaced ToolBar by a set of buttons - I don't need any special functionality of ToolBar – Ilya Blokh Jan 30 at 9:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.