Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Displaying text on a UILabel in digital form?

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.

like image 493
Siddharth Avatar asked Jun 27 '10 12:06

Siddharth


1 Answers

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.

like image 140
raaz Avatar answered Oct 04 '22 18:10

raaz