从 CGPath 创建 NSView

发布于 2024-09-01 11:32:54 字数 73 浏览 12 评论 0原文

我有一个 CGPath,我想将它绘制到 NSView 上一次。看起来相对简单,但我还没有在AppKit(非iphone)中找到方法。

I have a CGPath and I want to draw it once to a NSView. Seems relatively simple but I haven't found a way in AppKit (non iphone).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撧情箌佬 2024-09-08 11:32:54

-drawRect: 内部,您使用 CGContextAddPath 将其添加到上下文中,并使用 CGContext(Draw|Fill|Stroke)Path 进行绘制它。即,您继承 NSView 并重写

- (void)drawRect:(NSRect)needsDisplayInRect
{
    CGContextRef cgcontext = [[NSGraphicsContext currentContext] graphicsPort];
    CGContextAddPath(cgcontext,path); // assumes you have CGPathRef*path;
    CGContextStrokePath(cgcontext);
}

然后 -drawRect: 将在适当的时候被调用。您可以通过调用[view displayIfNeeded]强制视图更新。

Inside -drawRect:, You use CGContextAddPath to add it to a context, and use CGContext(Draw|Fill|Stroke)Path to draw it. I.e. you subclass NSView, and override

- (void)drawRect:(NSRect)needsDisplayInRect
{
    CGContextRef cgcontext = [[NSGraphicsContext currentContext] graphicsPort];
    CGContextAddPath(cgcontext,path); // assumes you have CGPathRef*path;
    CGContextStrokePath(cgcontext);
}

Then -drawRect: will be called whenever appropriate. You can force the view to update by calling [view displayIfNeeded].

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文