6

如何定制 NSSlider 以在可可中提供非线性比例?即 - 0、2、4、6、10。

由于滑块仅限于在刻度线上停止,我希望滑块在 0、2、4、6、10(而不是 8 例如)上停止。谢谢。

4

1 回答 1

12

基于具有所需值的数组的快速编写示例:

SampleAppDelegate.h

#import <Cocoa/Cocoa.h>

@interface SampleAppDelegate : NSObject <NSApplicationDelegate> {

    NSWindow * window;
    NSArray * values;

    IBOutlet NSSlider * theSlider;
    IBOutlet NSTextField * theLabel;

}

- (IBAction)sliderChanged:(id)sender;

@property (assign) IBOutlet NSWindow *window;

@end

SampleAppDelegate.h

#import "SampleAppDelegate.h"

@implementation SampleAppDelegate

@synthesize window;

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {

    values = [[NSArray alloc] initWithObjects:@"0",@"1",@"2",@"10",@"50",nil];

    [theSlider setNumberOfTickMarks:[values count]];
    [theSlider setMinValue:0];
    [theSlider setMaxValue:[values count]-1];
    [theSlider setAllowsTickMarkValuesOnly:YES];

    [theLabel setStringValue:[values objectAtIndex:0]];
    [theSlider setIntValue:0];


}

- (IBAction)sliderChanged:(id)sender {

    int current = lroundf([theSlider floatValue]);
    [theLabel setStringValue:[values objectAtIndex:current]];

}

@end

界面生成器:
- 添加 NSSlider(连接 IBOutlet / 连接 IBAction / 启用持续更新)
- 添加 NSTextField(连接 IBOutlet)

结果:

在此处输入图像描述

于 2011-04-27T22:03:41.423 回答