Attributes:文本属性 和NSAttributedString

前言:

  有一些控件无法直接设置文本大小,需要使用方法 setTitleTextAttributes 来设置文本属性

UIFont 字体样式 [UIFont fontWithName~];

iOS- 详解文本属性Attributes - 清澈Saup - 推酷

    UIBarButtonItem *rightBarItem = [[UIBarButtonItem alloc] initWithTitle:@"任务" style:UIBarButtonItemStylePlain target:self action:@selector(clickRightBarItem)];
    [rightBarItem setTintColor:[UIColor blackColor]];
    [rightBarItem setTitleTextAttributes:@{
                  //1.设置字体样式:例如黑体,和字体大小
                  NSFontAttributeName:[UIFont fontWithName:@"Arial-BoldMT" size:15],
                  //2.设置段落样式
                  NSParagraphStyleAttributeName:[NSParagraphStyle defaultParagraphStyle],
                  //3.设置文字颜色
                  NSForegroundColorAttributeName:[UIColor redColor],
                  //4.设置背景颜色
                  NSBackgroundColorAttributeName:[UIColor greenColor]
                                           }forState:(UIControlStateNormal)];
   
时间: 2024-10-11 16:30:46

Attributes:文本属性 和NSAttributedString的相关文章

文本属性Attributes

文本属性Attributes 1.NSKernAttributeName: @10 调整字句 kerning 字句调整 2.NSFontAttributeName : [UIFont systemFontOfSize:_fontSize] 设置字体 3.NSForegroundColorAttributeName :[UIColor redColor] 设置文字颜色 4.NSParagraphStyleAttributeName : paragraph 设置段落样式 5.NSMutablePar

NSAttributedString.h 中文本属性key的说明-06

//NSAttributedString.h 中文本属性key的说明 /* NSFontAttributeName 设置字体属性,默认值:字体:Helvetica(Neue) 字号:12 NSForegroundColorAttributeName 设置字体颜色,取值为 UIColor对象,默认值为黑色 NSBackgroundColorAttributeName 设置字体所在区域背景颜色,取值为 UIColor对象,默认值为nil, 透明色 NSLigatureAttributeName 设置

iOS- 详解文本属性Attributes

iOS- 详解文本属性Attributes 2014-03-01 21:06:18cnblogs.com-详解文本属性Attributes 1.NSKernAttributeName: @10 调整字句 kerning 字句调整 2.NSFontAttributeName : [UIFont systemFontOfSize:_fontSize] 设置字体 3.NSForegroundColorAttributeName :[UIColor redColor] 设置文字颜色 4.NSParagr

zencart批量插入TEXT文本属性attributes

有时候上传的产品与多级分类比较多,在后台添加文本属性如Name,Number等需要顾客自定义的内容就比较费神了.现在只需将以下代码保存为insert_attributes.php,变量$options_id_array,$current_category_id修改为实际的值,上传到网站根目录运行即可一步到位. <?php //header("content-Type: text/html; charset=utf-8"); @set_time_limit(1800); @ini_

IOS开发UI基础文本属性Attributes

文本属性Attributes 1.NSKernAttributeName: @10 调整字句 kerning 字句调整 2.NSFontAttributeName : [UIFont systemFontOfSize:_fontSize] 设置字体 3.NSForegroundColorAttributeName :[UIColor redColor] 设置文字颜色 4.NSParagraphStyleAttributeName : paragraph 设置段落样式 5.NSMutablePar

文本属性Attributes的用法

文本属性Attributes 1.NSKernAttributeName: @10 调整字句 kerning 字句调整 2.NSFontAttributeName : [UIFont systemFontOfSize:_fontSize] 设置字体 3.NSForegroundColorAttributeName :[UIColor redColor] 设置文字颜色 4.NSParagraphStyleAttributeName : paragraph 设置段落样式 5.NSMutablePar

简述文本属性Attributes的用法

文本属性Attributes 1.NSKernAttributeName: @10 调整字句 kerning 字句调整 2.NSFontAttributeName : [UIFont systemFontOfSize:_fontSize] 设置字体 3.NSForegroundColorAttributeName :[UIColor redColor] 设置文字颜色 4.NSParagraphStyleAttributeName : paragraph 设置段落样式 5.NSMutablePar

03-副文本属性

-UITextField占位文字相关的设置 // 设置占位文字内容 @property(nullable, nonatomic,copy)   NSString  *placeholder; // 设置带有属性的占位文字, 优先级 > placeholder @property(nullable, nonatomic,copy)   NSAttributedString     *attributedPlaceholder; ## NSAttributedString- 带有属性的字符串, 富文

UIlabel - 富文本属性

1.NSKernAttributeName: @10 调整字句 kerning 字句调整 2.NSFontAttributeName : [UIFont systemFontOfSize:_fontSize] 设置字体 3.NSForegroundColorAttributeName :[UIColor redColor] 设置文字颜色 4.NSParagraphStyleAttributeName : paragraph 设置段落样式 5.NSMutableParagraphStyle *pa