この 2 つの図で説明するとわかりやすいでしょう。最初の画像は、まだホバーされていない nsbutton を示しています。2 番目の画像は、ホバーしたときの同じ nsbutton を示しています。
ご覧のとおり、なんらかの理由で、NSView の外側のベジエ パスもボタンに描画されているようです。ボタンは通常の NSButton インスタンスであり、サブクラスではありません。
ここに私のカスタム NSView があります:
#import "MyView.h"
@implementation MyView
- (void)drawRect:(NSRect)rect
{
NSBezierPath *path;
path = [NSBezierPath bezierPathWithRect:rect];
[[NSColor redColor] set];
[path fill];
rect.size.width -= 10;
rect.size.height -= 10;
rect.origin.x += 5;
rect.origin.y += 5;
path = [NSBezierPath bezierPathWithRect:rect];
[[NSColor whiteColor] set];
[path fill];
}
- (void)awakeFromNib
{
NSButton *commandButton = [[NSButton alloc] initWithFrame:NSMakeRect(90, 50, 100, 18)];
[commandButton setButtonType:NSMomentaryPushInButton];
[commandButton setBordered:YES];
[commandButton setTitle:@"Test!"];
[commandButton setFont:[NSFont fontWithName:@"LucidaGrande" size:14.0]];
[commandButton setBezelStyle:NSInlineBezelStyle];
[self addSubview:commandButton];
}
@end