我正在尝试复制UITabBarItem上使用的天真字体设置,以便在自定义标签栏上使用。
有谁知道字体设置是什么?什么UIFont,字体大小,文字颜色等......?
答案 0 :(得分:9)
我使用以下设置复制原生字体:
UILabel* tabBarItemLabel = [[[UILabel alloc] init] autorelease];
tabBarItemLabel.font = [UIFont boldSystemFontOfSize:10];
tabBarItemLabel.textColor = [UIColor colorWithRed:153.0/255.0 green:153.0/255.0 blue:153.0/255.0 alpha:1];
tabBarItemLabel.shadowColor = [UIColor clearColor];
tabBarItemLabel.backgroundColor = [UIColor clearColor];