0

我以前过(并回答过)一个非常相似的问题。这个问题能够得到解决,因为我知道dirtyRect,因此,知道我应该在哪里绘制图像。现在,我看到与子类相同的行为NSButtonCell

在此处输入图像描述

在我的子类中,我只是重写了drawImage:withFrame:inView添加阴影的方法。

- (void)drawImage:(NSImage *)image withFrame:(NSRect)frame inView:(NSView *)controlView {   

    NSGraphicsContext *ctx = [NSGraphicsContext currentContext];
    [ctx saveGraphicsState];

    // Rounded Rect
    NSBezierPath *path = [NSBezierPath bezierPathWithRoundedRect:frame cornerRadius:kDefaultCornerRadius];
    NSBezierPath *shadowPath = [NSBezierPath bezierPathWithRoundedRect:NSInsetRect(frame, 0.5, 0.5) cornerRadius:kDefaultCornerRadius]; // prevents the baground showing through the image corner

    // Shadow
    NSColor *shadowColor = [UAColor colorWithCalibratedWhite:0 alpha:0.8];
    [NSShadow setShadowWithColor:shadowColor
                  blurRadius:3.0
                      offset:NSMakeSize(0, -1)];
    [[NSColor colorWithCalibratedWhite:0.635 alpha:1.0] set];
    [shadowPath fill];
    [NSShadow clearShadow];

    // Background Gradient in case image is nil
    NSGradient *gradient = [[NSGradient alloc] initWithStartingColor:[UAColor grayColor] endingColor:[UAColor lightGrayColor]];
    [gradient drawInBezierPath:shadowPath angle:90.0];
    [gradient release];

    // Image
    if (image) {
        [path setClip];
        [image drawInRect:frame fromRect:CGRectZero operation:NSCompositeSourceAtop fraction:1.0];
    }

    [ctx restoreGraphicsState];

}

看起来都很标准,但图像仍在包含滚动视图边界之外绘制。我怎样才能避免这种情况?

4

1 回答 1

4

除非你真的-setClip是认真的,否则你不应该打电话。通常你想要,它将你的剪辑路径添加到当前剪辑区域的集合中。NSBezierPath‑addClip

NSScrollView通过使用它自己的剪切路径来工作,并且您在绘制图像之前将这条路径吹走。

这也让我绊倒了很长时间。

于 2011-03-08T23:48:56.080 回答