Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Whats the font and color of UITableViewCell text?

Tags:

ios

iphone

fonts

I want to replicate the UITableViewCellStyleValue1 provided by apple, I just can't figure out the font and size of the text in the cells in the right. Specifically the font and color of numbers below is, 28 1 6843.

enter image description here

like image 279
bubbles Avatar asked Sep 15 '11 03:09

bubbles


1 Answers

Use the default font with the label with the size = [UIFont boldSystemFontOfSize:16];

and the color of the number you are looking for is

label.textColor = [UIColor colorWithRed:81.0/255.0 green:102.0/255.0 blue:145.0/255.0 alpha:1.0];

like image 113
B25Dec Avatar answered Oct 19 '22 23:10

B25Dec