NSAttributedString能否设置文字下划线?是否支持line break?

#import <CoreText/CoreText.h>
#import "ViewController.h"
@interface ViewController ()
@property(nonatomic, weak) IBOutlet UILabel *label1;
@end
@implementation ViewController
- (void)viewDidLoad {
    [super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
NSMutableAttributedString *attString = [[NSMutableAttributedString alloc] initWithString:@"Some String"];
    [attString addAttribute:(NSString*)kCTUnderlineStyleAttributeName value:[NSNumber numberWithInt:kCTUnderlineStyleSingle] range:(NSRange){0,[attString length]}];
self.label1.attributedText = attString;
}
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end

由于iOS7新出的NSTextStorge是NSMutableAttributedString的子类,所以要用好NSTextStorage,首先要学好NSMutableAttributedString和NSAttributedString。


按个人的理解,NSAttributedString是一个带有属性的字符串,通过该类可以灵活地操作和呈现多种样式的文字数据。


因为是初步使用,所以基本上都是对照着文档上的指导和介绍的方法来写Demo。


首先是两种类的初始化方法(基本上是相似的):




  1.  1 // initWithString:
     2 NSAttributedString *attributedString_str = [[NSAttributedString alloc] initWithString:@"attributedString"];
     3 NSLog(@"%@", attributedString_str);
     4 // textView.attributedText = attributedString_str;
     5
     6
     7 // initWithAttributedString:
     8 NSAttributedString *attributedString_atts = [[NSAttributedString alloc] initWithAttributedString:attributedString_str];
     9 NSLog(@"%@", attributedString_atts);
    10 // textView.attributedText = attributedString_atts;
    11
    12
    13 // initWithString:attributes:
    14 UIColor *backgroundColor = [UIColor blackColor];
    15 NSNumber *baseLineOffset = [NSNumber numberWithFloat:20.0];
    16 UIColor *foregroundColor = [UIColor whiteColor];
    17 NSNumber *kern = [NSNumber numberWithFloat:5.0];
    18 NSNumber *ligature = [NSNumber numberWithFloat:3.0];
    19 NSURL *linkURL = [NSURL URLWithString:@"http://www.baidu.com"];
    20 NSNumber *underline = [NSNumber numberWithInt:NSUnderlineStyleSingle];
    21 NSDictionary *attrsDic = @{NSForegroundColorAttributeName: foregroundColor,
    22                            NSBackgroundColorAttributeName: backgroundColor,
    23                            NSBaselineOffsetAttributeName: baseLineOffset,
    24                            NSKernAttributeName: kern,
    25                            NSLigatureAttributeName: ligature,
    26                            NSLinkAttributeName: linkURL,
    27                            NSUnderlineStyleAttributeName: underline
    28                            };
    29 NSAttributedString *attributedString_str_atts = [[NSAttributedString alloc] initWithString:@"http://www.baidu.com" attributes:attrsDic];
    30 NSLog(@"%@", attributedString_str_atts);
    31 // textView.attributedText = attributedString_str_atts;
    32
    33
    34 // initWithFileURL:options:documentAttributes:error:
    35 NSURL *fileURL = nil;
    36 fileURL = [[NSBundle mainBundle] URLForResource:@"Dynamic Coloring" withExtension:@"rtf"];
    37 NSAttributedString *attributedString_fileURL = [[NSAttributedString alloc] initWithFileURL:fileURL options:@{} documentAttributes:nil error:nil];
    38 NSLog(@"%@", attributedString_fileURL);
    39 // textView.attributedText = attributedString_fileURL;
    40
    41
    42 // initWithData:options:documentAttributes:error:
    43 fileURL = nil;
    44 fileURL = [[NSBundle mainBundle] URLForResource:@"View Layout" withExtension:@"rtf"];
    45 NSData *data = [[NSData alloc] initWithContentsOfURL:fileURL];
    46 NSAttributedString *attributedString_data = [[NSAttributedString alloc] initWithData:data options:@{} documentAttributes:nil error:nil];
    47 NSLog(@"%@", attributedString_data);
    48 // textView.attributedText = attributedString_data;
    49
    50
    51 // initWithAttributedString:
    52 NSMutableAttributedString *mutableAttributedString_attrs = [[NSMutableAttributedString alloc] initWithAttributedString:attributedString_fileURL];  


非常简单。




由于NSAttributedString的属性以字典的形式记录,所以要弄清楚其中一些属性对应的键值:



说说几个自己使用上或者了解作用的。


NSBackgroundColorAttributeName:文字背景的颜色。


NSBaselineOffsetAttributeName:设置行距。


NSFontAttributeName:字体的样式,必须设置NSFont作为Value,NSFont在iOS中不能使用,这个属性的设置上我还不会。


NSForegroundColorAttributeName:文字颜色。


NSUnderlineStyleAttributeName:为文字添加下划线。必须设置NSNumber对象为Value。如:




  1. NSNumber *underline = [NSNumber numberWithInt:NSUnderlineStyleSingle];


以上attribute在NSAttributedString和NSMutableAttributedString对象创建时可以设定,不同的是NSAttributedString对象在创建成功后其属性便不可改变,而NSMutableAttributedString的属性是可以改变的。如下所示:




  1.  1 // Change NSMutableAttributedString
     2 [mutableAttributedString_attrs beginEditing];
     3 /*
     4 // addAttributes:range:
     5 [mutableAttributedString_attrs addAttributes:@{NSLinkAttributeName: @"www.baidu.com",
     6                                                NSBackgroundColorAttributeName: [UIColor greenColor],
     7                                                NSUnderlineStyleAttributeName: [NSNumber numberWithInt:NSUnderlineStyleDouble]
     8                                                }
     9                                        range:NSMakeRange(0, [attributedString_fileURL length])]; */
    10 // addAttribute:value:range:
    11 [mutableAttributedString_attrs addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInt:NSUnderlineStyleThick] range:NSMakeRange(0, 10)];
    12 [mutableAttributedString_attrs addAttribute:NSBaselineOffsetAttributeName value:[NSNumber numberWithFloat:20.0] range:NSMakeRange(20, 100)];
    13 [mutableAttributedString_attrs endEditing];
    14 NSLog(@"%@", mutableAttributedString_attrs);
    15  


在修改文字属性的开头和结尾要分别调用beginEditing和endEditing方法,这些方法可以在文字属性发生变化时发送消息给事件监听者。


可以为某个范围内的文字单个地添加属性key-value对,也可以添加一个属性字典。
注意到在控制台输出NSAttributedString或NSMutableAttributedString时,输出的不仅是字符内容,还有对应的属性值:




  1. 1 2013-08-11 16:40:44.737 AttributedString_i7_Demo[43468:a0b] http://www.baidu.com{
    2     NSBackgroundColor = "UIDeviceWhiteColorSpace 0 1";
    3     NSBaselineOffset = 20;
    4     NSColor = "UIDeviceWhiteColorSpace 1 1";
    5     NSKern = 5;
    6     NSLigature = 3;
    7     NSLink = "http://www.baidu.com";
    8     NSUnderline = 1;
    9 }  




也可以获取某一段文字的属性:




  1. 1 // get attribute
    2 NSRange range = NSMakeRange(0, mutableAttributedString_attrs.length);
    3 // attributesAtIndex:effectiveRange:
    4 NSDictionary *dic = [mutableAttributedString_attrs attributesAtIndex:0 effectiveRange:&range];
    5 NSLog(@"%@", [dic objectForKey:NSFontAttributeName]);  

如果要将NSMutableAttributedString对象赋值给NSAttributedString时,要使用copy方法:



  1. 1 textView.attributedText = [mutableAttributedString_attrs copy]; 

    以上是对NSAttributedString和NSMutableAttributedString最基本的使用(主要还是NSAttributedString),为了强化作为NSMutableAttributedString的子类NSTextStorage处理文本的能力,明显在这两个类中增加了许多新的成员,如NSTextAttachment,在这里没有用上,必须继续深入学习。

 

设置UITextView,UILabel 中的文字加下划线




1

2

3

4

5

6

7

8

9

10

11

//添加下划线

-(NSAttributedString*) getAttributedString:(NSAttributedString*) attributedString isUnderline:(BOOL) isUnderline

{

    NSNumber *valuUnderline = [NSNumbernumberWithBool:isUnderline];

    NSRange rangeAll = NSMakeRange(0, attributedString.string.length);

    NSMutableAttributedString *as = [attributedString mutableCopy];

    [as beginEditing];

    [as addAttribute:NSUnderlineStyleAttributeNamevalue:valuUnderline range:rangeAll];

    [as endEditing];

    return as;

}



使用



1

2

textView.attributedText = [self getAttributedString:_mainTextView.attributedText isUnderline:YES];

label.attributedText =  [self getAttributedString:_mainTextView.attributedText isUnderline:YES];

				
时间: 2024-12-26 08:12:39

NSAttributedString能否设置文字下划线?是否支持line break?的相关文章

设置TextView下划线并响应点击事件(SpannableString)

写Demo程序的时候能表带自定义的数据结构对象吗? --低级程序猿 前情提要:网上介绍TextView+SpannableString的文章真心太长,真心看不懂. ====原文===== 下面是一个20行的完整Demo代码:基本原理是使用一个SpannableString并设置其ClickableSpan来响应点击事件. TextView useInfo = (TextView) findViewById(R.id.info); String url_0_text = "用户协议及隐私条款&qu

TextView 设置无下划线超链接

// 设置无下划线超链接 start String textStr = "13771839951;021-12345678"; text.setAutoLinkMask(Linkify.PHONE_NUMBERS); text.setText(textStr); Spannable s = (Spannable) text.getText(); s.setSpan(new UnderlineSpan() { @Override public void updateDrawState(T

iOS 文字下划线

给UILabel添加下划线 1 NSMutableAttributedString *content = [[NSMutableAttributedString alloc]initWithString:text]; 2 NSRange contentRange = {0,[content length]}; 3 [content addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInteger:NSUnde

12.文字排版--下划线

有些情况下想为文字设置为下划线样式,这样可以在视觉上强调文字,可以使用下面代码来实现: p a{text-decoration:underline;} <p>三年级时,我还是一个<a>胆小如鼠</a>的小女孩.</p> 删除线:text-decoration:line-through;

文字排版--字体、字号、颜色、粗体、斜体、下划线、删除线

我们可以使用css样式为网页中的文字设置字体.字号.颜色等样式属性.下面我们来看一个例子,下面代码实现:为网页中的文字设置字体为宋体. body{font-family:"宋体";} 这里注意不要设置不常用的字体,因为如果用户本地电脑上如果没有安装你设置的字体,就会显示浏览器默认的字体.(因为用户是否可以看到你设置的字体样式取决于用户本地电脑上是否安装你设置的字体.)现在一般网页喜欢设置"微软雅黑",如下代码: body{font-family:"Micr

网页中添加下划线的方法汇总及优缺点

本文主要介绍了添加下划线样式的几乎所有方法,并且比较了每一种方法的优缺点.没想到之前一直没有注意的下划线还有这么多玄机奥秘! 本文由 nzbin 翻译,艾凌风 校稿.未经许可,禁止转载! 英文出处:css-tricks.com 发表地址:http://web.jobbole.com/89425/ 有很多种添加下划线样式的方法.可能你还记得< Crafting link underlines on Medium >这篇文章.Medium 并没有尝试特殊的方法,只是想创建一个漂亮的看起来正常的下划

如何去掉a标签的下划线

首先来了解下<a>标签的一些样式: <a>标签的伪类样式 一组专门的预定义的类称为伪类,主要用来处理超链接的状态.超链接文字的状态可以通过伪类选择符+样式规则来控制.伪类选择符包括: 总: a 表示所有状态下的连接 如 a{color:red} ① a:link:未访问链接 ,如 a:link {color:blue} ② a:visited:已访问链接 ,如 a:visited{color:blue} ③ a:active:激活时(链接获得焦点时)链接的颜色 ,如 a:activ

去掉a标签的下划线

<a>标签的伪类样式 一组专门的预定义的类称为伪类,主要用来处理超链接的状态.超链接文字的状态可以通过伪类选择符+样式规则来控制.伪类选择符包括: 总: a          表示所有状态下的连接 如 a{color:red} ① a:link:未访问链接 ,如 a:link {color:blue} ② a:visited:已访问链接 ,如 a:visited{color:blue} ③ a:active:激活时(链接获得焦点时)链接的颜色 ,如 a:active{color:blue} ④

Android自定义无下划线ClickableSapn超链接文本样式

最近在做评论的时候需要实现这种效果网上百度了一下,就是自定义一个类继承4ClickableSpan,然后在updateDrawState方法中设置是否下划线为false,但是看了一下网上实现的方法是直接在新类的OnClick方法中实现onClick操作,感觉不太容易扩展使用,于是我自定义了一个接口,通过接口实现了外部代码调用,具体代码如下: public class NoLineClickableSpan extends ClickableSpan{ private IOnNoLineTextC