Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bottom bar in NSWindow

I am developing an app in Cocoa. I need to show a progress at the bottom bar of window. But I am searching for a solution to put a bottom bar in a NSWindow.

Looking forward for a solution.

like image 523
MobX Avatar asked Jul 08 '09 09:07

MobX


1 Answers

This is the code to put a bar at the bottom of the window (like in the finder):

[theWindow setContentBorderThickness:24.0 forEdge:NSMinYEdge];
like image 92
Tom Dalling Avatar answered Sep 25 '22 23:09

Tom Dalling