gpt4 book ai didi

cocoa - 如何定制 NSSlider 以在 cocoa 中提供非线性比例?

转载 作者:行者123 更新时间:2023-12-03 16:08:30 24 4
gpt4 key购买 nike

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

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

最佳答案

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

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)

结果:

enter image description here

关于cocoa - 如何定制 NSSlider 以在 cocoa 中提供非线性比例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5810753/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com