Displaying text on a UILabel in digital form?

后端 未结 3 1110
时光取名叫无心
时光取名叫无心 2021-02-10 13:35

How can we display text in digital format(seven segment display) on a UILabel similar to the way as text is displayed in Digital Clock.

相关标签:
3条回答
  • 2021-02-10 13:46

    Simple approach: use a custom font.

    Here's a UILabel subclass that allows you to embed custom fonts in your application: http://github.com/zynga/FontLabel

    Here are a whole bunch of fonts that look like digital clocks: http://www.dafont.com/theme.php?cat=302 (be sure to read the licensing information for whatever font you choose)

    0 讨论(0)
  • 2021-02-10 13:51

    For simple you can also use Apple recommended font.

    label.font=[UIFont fontWithName:@"DBLCDTempBlack" size:60.0];
    

    Please Check this to find all the font supported by iPhone.

    0 讨论(0)
  • 2021-02-10 13:53

    With UILabel your best bet is a font that does what you need. Most likely you will have to implement drawing part by yourself. It will not be easy what your are asking.

    0 讨论(0)
提交回复
热议问题