绘制圆角的NSTextFieldCell

时间:2009-12-21 08:44:28

标签: objective-c cocoa nstextfieldcell

我的NSTextFieldCell代码是:

- (void)drawInteriorWithFrame:(NSRect)cellFrame inView:(NSView *)controlView {
    // Drawing code here.
    NSGradient *gradient = [[NSGradient alloc] initWithStartingColor:[NSColor lightGrayColor] endingColor:[NSColor grayColor]];
    [gradient drawInRect:cellFrame angle:90];
    [[self title] drawInRect:cellFrame withAttributes:nil];

}

我想让NSTextFieldCell有圆角......我怎么能这样做?

1 个答案:

答案 0 :(得分:3)

使用NSView的图层属性,然后可以为此设置角半径。