Snippet
LED like font is available on the iOS platform. The following snippet shows how to set the font to LED like for a label.
- UILabel *remainLabel =[UILabel alloc] init];
- [remainLabel setText:@"39:24"];
- remainLabel.font = [UIFont fontWithName:@"DBLCDTempBlack" size:20];
<!--break-->