在 UILabel 或文本视图中显示垂直小数

发布于 2024-11-08 16:01:01 字数 240 浏览 0 评论 0原文

我正在尝试在 iPhone 应用程序中显示小数,例如 12 和 3/81 应显示为数字“12”,后跟顶部的分子“3”、水平线和分母“81”底部。

如果有人能建议我如何实现这一目标,我将不胜感激。我应该子类化 UILabel 并自定义分数的绘制,还是应该子类化 UITextView

是否有任何示例代码可以显示如何完成 UILabel 或 UITextView 的此类自定义绘制?

I'm trying to display fractional numbers in an iPhone app, e.g. 12 and 3/81 should be displayed as the number "12" followed by the numerator "3" on top, a horizontal line, and the denominator "81" at the bottom.

I would greatly appreciate if anyone could advise me on how to achieve this. Should I subclass a UILabel and do custom drawing of the fraction, or should I subclass a UITextView?

Is there any sample code somewhere that shows how such custom drawing of UILabel or UITextView can be done?

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

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

发布评论

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

评论(1

烟燃烟灭 2024-11-15 16:01:01

创建一个名为 FractionView 的 UIView 子类,其标签表示分子、分母和分隔符(斜杠)。为视图创建numeratordenominator 属性来存储您传递的值并相应地设置标签。然后,您可以将此视图放在需要显示分数的任何位置。

Create a UIView subclass called FractionView with labels representing the numerator, the denominator and the separator (slash). Create numerator and denominator properties for the view to store the values you pass and set the labels accordingly. You can then drop this view anywhere you need to display fractions.

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