绘制文本、换行符、Quartz 2D
我试图在 Quartz 中绘制文本。例如:
20.0%
1/5
我想我可以做这样的事情:
NSString *label = [NSString stringWithFormat:@"%1.1f%%\n1/5",someValue * 100];
但是换行符被绘制为一个盒子。有办法解决这个问题吗?谢谢!
I was trying to draw a text in Quartz. For example:
20.0%
1/5
I thought I could do something like this:
NSString *label = [NSString stringWithFormat:@"%1.1f%%\n1/5",someValue * 100];
However the newline gets drawn as a box. Is there a way around this? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将字符串拆分为单独的文本元素,每个元素占自己的行。
Split up the string into separate text elements, each on their own line.