Search code examples
c#objective-cnscontrol

Windows vScrollBar Equivalent in Mac OSX


Does anyone know what is the equivalent of the vertical scroll bar from Windows in Mac OSX? I saw there is NSStepper. But I can't seem to change the display of it at run time.

NSStepper *stepperBar = [[[NSStepper alloc] initWithFrame:NSMakeRect(0, 100, w, h)] autorelease];

The w and h do not seem to affect the width and height of the NSStepper object.


Solution

  • NSSlider is what you probable want.