码迷,mamicode.com
首页 > 其他好文 > 详细

Attributes:文本属性 和NSAttributedString

时间:2016-06-08 19:00:20      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

前言:

  有一些控件无法直接设置文本大小,需要使用方法 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)];
   

 

Attributes:文本属性 和NSAttributedString

标签:

原文地址:http://www.cnblogs.com/jiayongqiang/p/5570746.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!