5

如何使用可可创建自定义滚动条?

4

1 回答 1

7

如果没有必要,不要重新发明太多的轮子。如果您只想自定义滚动条的外观,则子类化 NSScroller 并覆盖各种draw方法可能会更容易。

这是未经测试的代码,但它应该演示如果您有自己的图像,您需要做什么来自定义旋钮的外观MyKnob.png


@interface MyScroller : NSScroller
{
    NSImage *knobImage;
}
@end




@implementation MyScroller

- (void) dealloc
{
    [knobImage release];
    [super dealloc];
}

- (id) initWithFrame:(NSRect) frame
{
    self = [super initWithFrame:frame];
    if (!self) return nil;

    knobImage = [[NSImage imageNamed:@"MyKnob.png"] retain];

    return self;
}

- (void) drawKnob
{
    // Work out where exactly to draw the knob
    NSPoint p = NSMakePoint(0.0, 0.0);

    [knobImage drawAtPoint:p fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1.0];
}

@end

于 2009-12-28T05:40:04.587 回答