为什么我的 CGContext 绘制的圆很糟糕?
我有一个自定义表格视图单元格,旨在像 iPhone 的 Mail.app 一样绘制一个圆圈:
相反,它画得像这样:
这是我的代码:
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:
Instead, it draws like this:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我可以通过将
UIColor
更改为 Apple 使用的相同颜色#E5E5E5
来解决此问题:并更改默认的
1.0
线宽到2.0
:调整大小也是必要的:
最终代码如下所示:
输出如下:
I was able to solve this by changing the
UIColor
to the same color Apple uses,#E5E5E5
:And changing the line width from the default
1.0
to2.0
:Tweaking the size was also necessary:
The final code looks like this:
And outputs like this:
尝试将其 alpha 设置为 0.5 并使边框更粗,例如,如下所示:
Try setting its alpha to 0.5 and making the borders thicker, for example, like this: