圆角

2019-11-15  本文已影响0人  皮蛋豆腐酱油
- (void)drawRect:(NSRect)rect {
    [super drawRect:rect];
    NSRect rectFill = NSInsetRect(self.bounds, 2, 2);
    NSBezierPath * bezier = [NSBezierPath bezierPathWithRoundedRect:rectFill xRadius:2 yRadius:2];
    [[NSColor blackColor] setFill];
    [bezier fill];
}
上一篇 下一篇

猜你喜欢

热点阅读