0

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.

user523234
  • 14,323
  • 10
  • 62
  • 102

1 Answers1

1

NSSlider is what you probable want.

Nathan Day
  • 113
  • 1
  • With NSSlider, one needs to hold down and move... I am looking for a control that has two up/down pointers. – user523234 May 13 '11 at 14:06