为什么我的 CGContext 绘制的圆很糟糕?

发布于 2024-10-05 04:43:19 字数 591 浏览 3 评论 0原文

我有一个自定义表格视图单元格,旨在像 iPhone 的 Mail.app 一样绘制一个圆圈:

Circles that don't suck

相反,它画得像这样:

Circles that bad

这是我的代码:

CGContextRef context = UIGraphicsGetCurrentContext();
UIColor *grayColor = [UIColor grayColor];

[grayColor set];

CGContextStrokeEllipseInRect(context, CGRectMake(9, 10, 23, 23));

如何让它不那么糟糕? :)

编辑:忽略我省略了绘制白色背景颜色的代码这一事实。

这很糟糕吗?它看起来与 Mail 中的圆圈即使不完全一样,也不太接近。

I have a custom table view cell that is intended to draw a circle like the iPhone’s Mail.app does:

Circles that don't suck

Instead, it draws like this:

Circles that suck

Here’s my code:

CGContextRef context = UIGraphicsGetCurrentContext();
UIColor *grayColor = [UIColor grayColor];

[grayColor set];

CGContextStrokeEllipseInRect(context, CGRectMake(9, 10, 23, 23));

How can I make it not suck? :)

Edit: Ignore the fact that I omitted the code that draws the white background color.

What about it sucks? It doesn’t look close to, if not exactly like, the circle from Mail.

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

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

发布评论

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

评论(2

溺渁∝ 2024-10-12 04:43:19

我可以通过将 UIColor 更改为 Apple 使用的相同颜色 #E5E5E5 来解决此问题:

[UIColor colorWithRed: 0.8980392157 green: 0.8980392157 blue: 0.8980392157 alpha: 1.0]

并更改默认的 1.0 线宽到 2.0

CGContextSetLineWidth(context, 2.0);

调整大小也是必要的:

CGContextStrokeEllipseInRect(context, CGRectMake(10, 11, 21, 21));

最终代码如下所示:

CGContextRef context = UIGraphicsGetCurrentContext();
UIColor *grayColor = [UIColor colorWithRed: 0.8980392157 green: 0.8980392157 blue: 0.8980392157 alpha: 1.0];

[grayColor set];

CGContextSetLineWidth(context, 2.0);
CGContextStrokeEllipseInRect(context, CGRectMake(10, 11, 21, 21));

输出如下:

“不烂的圆圈”

I was able to solve this by changing the UIColor to the same color Apple uses, #E5E5E5:

[UIColor colorWithRed: 0.8980392157 green: 0.8980392157 blue: 0.8980392157 alpha: 1.0]

And changing the line width from the default 1.0 to 2.0:

CGContextSetLineWidth(context, 2.0);

Tweaking the size was also necessary:

CGContextStrokeEllipseInRect(context, CGRectMake(10, 11, 21, 21));

The final code looks like this:

CGContextRef context = UIGraphicsGetCurrentContext();
UIColor *grayColor = [UIColor colorWithRed: 0.8980392157 green: 0.8980392157 blue: 0.8980392157 alpha: 1.0];

[grayColor set];

CGContextSetLineWidth(context, 2.0);
CGContextStrokeEllipseInRect(context, CGRectMake(10, 11, 21, 21));

And outputs like this:

Circle that doesn't suck

海之角 2024-10-12 04:43:19

尝试将其 alpha 设置为 0.5 并使边框更粗,例如,如下所示:

CGContextSetAlpha(context, 0.5);

Try setting its alpha to 0.5 and making the borders thicker, for example, like this:

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