第一种方法 labelname.font = [UIFont boldSystemFontOfSize:15.0]; 这种方法可能导致个别字体加粗不成功,用过这个之后就不要再用 labelname.font = [UIFont fontWithName:@"Helvetica-Bold" size: ...
分类:
移动开发 时间:
2017-09-25 11:42:59
阅读次数:
159
UIFont 设置字体 label.font = [UIFont fontWithName:@"Arial-BoldItalicMT" size:24]; 字体名如下: Font Family: American TypewriterFont: AmericanTypewriterFont: Ame ...
分类:
其他好文 时间:
2017-07-12 18:49:09
阅读次数:
255
1.了解NSAttributedString类 NSDictionary *attributes = @{NSForegroundColorAttributeName: [UIColor redColor],NSFontAttributeName:[UIFont fontWithName:@"Zap ...
分类:
其他好文 时间:
2017-03-27 15:33:36
阅读次数:
140
1、iOS设置字体样式 label.font = [UIFont fontWithName:@"Arial-BoldItalicMT" size:24]; 字体名如下: Font Family: American TypewriterFont: AmericanTypewriterFont: Ame ...
分类:
移动开发 时间:
2017-03-22 20:22:06
阅读次数:
219
[[UITabBarItem appearance] setTitleTextAttributes:@{ UITextAttributeTextColor : [UIColor blackColor],UITextAttributeFont:[UIFont fontWithName:@"Marion ...
分类:
其他好文 时间:
2016-08-01 17:37:49
阅读次数:
248
NSDictionary *attributes = @{ NSForegroundColorAttributeName : [ UIColorredColor ], NSFontAttributeName : [ UIFont fontWithName : @"Zapfino" size : 16 ...
分类:
其他好文 时间:
2016-06-15 01:30:52
阅读次数:
143
前言: 有一些控件无法直接设置文本大小,需要使用方法 setTitleTextAttributes 来设置文本属性 UIFont 字体样式 [UIFont fontWithName~]; iOS- 详解文本属性Attributes - 清澈Saup - 推酷 ...
分类:
其他好文 时间:
2016-06-08 19:00:20
阅读次数:
154
设置字体样式代码:[UIFont fontWithName:@"Arial-BoldMT" size:15] 下边一一列举: 一:Font Family: American Typewriter Font: AmericanTypewriter,如右图 Font: AmericanTypewrite ...
分类:
其他好文 时间:
2016-06-08 18:44:49
阅读次数:
642
//设置tabbar 选中文字的颜色 [[UITabBarItem appearance] setTitleTextAttributes:@{NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue-Bold" size:10.0f], N ...
分类:
其他好文 时间:
2016-05-13 07:56:25
阅读次数:
119
转自:http://i.cnblogs.com/EditPosts.aspx?opt=1 1、创建方法:+ fontWithName:size:- fontWithSize:2、创建系统字体:+ systemFontOfSize:+ boldSystemFontOfSize:+ italicSyst ...
分类:
其他好文 时间:
2016-04-14 20:46:59
阅读次数:
205