码迷,mamicode.com
首页 >  
搜索关键字:fontwithname    ( 39个结果
iOS中如何给字体
第一种方法 labelname.font = [UIFont boldSystemFontOfSize:15.0]; 这种方法可能导致个别字体加粗不成功,用过这个之后就不要再用 labelname.font = [UIFont fontWithName:@"Helvetica-Bold" size: ...
分类:移动开发   时间:2017-09-25 11:42:59    阅读次数:159
UIFont 设置字体
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
iOS 设置字体样式
1、iOS设置字体样式 label.font = [UIFont fontWithName:@"Arial-BoldItalicMT" size:24]; 字体名如下: Font Family: American TypewriterFont: AmericanTypewriterFont: Ame ...
分类:移动开发   时间:2017-03-22 20:22:06    阅读次数:219
navigation和tabbar上的文字.图片 自定义
[[UITabBarItem appearance] setTitleTextAttributes:@{ UITextAttributeTextColor : [UIColor blackColor],UITextAttributeFont:[UIFont fontWithName:@"Marion ...
分类:其他好文   时间:2016-08-01 17:37:49    阅读次数:248
快速创建各种类型的NSAttributeString和NSMutableParagraphStyle
NSDictionary *attributes = @{ NSForegroundColorAttributeName : [ UIColorredColor ], NSFontAttributeName : [ UIFont fontWithName : @"Zapfino" size : 16 ...
分类:其他好文   时间:2016-06-15 01:30:52    阅读次数:143
Attributes:文本属性 和NSAttributedString
前言: 有一些控件无法直接设置文本大小,需要使用方法 setTitleTextAttributes 来设置文本属性 UIFont 字体样式 [UIFont fontWithName~]; iOS- 详解文本属性Attributes - 清澈Saup - 推酷 ...
分类:其他好文   时间:2016-06-08 19:00:20    阅读次数:154
UIFont 字体样式 [UIFont fontWithName~];
设置字体样式代码:[UIFont fontWithName:@"Arial-BoldMT" size:15] 下边一一列举: 一:Font Family: American Typewriter Font: AmericanTypewriter,如右图 Font: AmericanTypewrite ...
分类:其他好文   时间:2016-06-08 18:44:49    阅读次数:642
设置tabbar上面文字的颜色
//设置tabbar 选中文字的颜色 [[UITabBarItem appearance] setTitleTextAttributes:@{NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue-Bold" size:10.0f], N ...
分类:其他好文   时间:2016-05-13 07:56:25    阅读次数:119
关于UIFont和计算字符串的高度和宽度
转自:http://i.cnblogs.com/EditPosts.aspx?opt=1 1、创建方法:+ fontWithName:size:- fontWithSize:2、创建系统字体:+ systemFontOfSize:+ boldSystemFontOfSize:+ italicSyst ...
分类:其他好文   时间:2016-04-14 20:46:59    阅读次数:205
39条   1 2 3 4 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!