美文网首页
iOS开发之UILabel(富文本)

iOS开发之UILabel(富文本)

作者: yunxiu | 来源:发表于2018-03-28 18:01 被阅读0次

    1、常见的属性及说明

    NSFontAttributeName//字体NSParagraphStyleAttributeName//段落格式 NSForegroundColorAttributeName//字体颜色NSBackgroundColorAttributeName//背景颜色NSStrikethroughStyleAttributeName//删除线格式NSUnderlineStyleAttributeName//下划线格式NSStrokeColorAttributeName//删除线颜色NSStrokeWidthAttributeName//删除线宽度NSShadowAttributeName//阴影

    2、常见方法:

    //为某一范围内文字设置多个属性- (void)setAttributes:(NSDictionary*)attrs range:(NSRange)range;//为某一范围内文字添加某个属性- (void)addAttribute:(NSString*)name value:(id)value range:(NSRange)range;//为某一范围内文字添加多个属性- (void)addAttributes:(NSDictionary*)attrs range:(NSRange)range;//移除某范围内的某个属性- (void)removeAttribute:(NSString*)name range:(NSRange)range;

    更多方法和属性说明详见苹果官方说明文档

    3、使用示例:

    NSString *str= @"犯我中华者,虽远必诛!";NSMutableAttributedString *attrStr = [[NSMutableAttributedString alloc]      initWithString:str];/*说明:NSAttributedString也能设置,与NSMutableAttributedString的关系类似于NSArray和NSMutableArray*/

    (1)、添加字体和设置字体的范围

    [attrStr addAttribute:NSFontAttributeNamevalue:  [UIFont systemFontOfSize:20.0f] range:NSMakeRange(0,3)];//字体大小为20.0f[attrStr addAttribute:NSFontAttributeNamevalue:  [UIFont boldSystemFontOfSize:20.0f] range:NSMakeRange(0,3)];//字体大小为20.0f并且加粗

    (2)、添加文字颜色

    [attrStr addAttribute:NSForegroundColorAttributeNamevalue:  [UIColor redColor] range:NSMakeRange(0,7)];

    (3)、添加下划线

    [attrStr addAttribute:NSUnderlineStyleAttributeNamevalue:  [NSNumber numberWithInteger:NSUnderlineStyleSingle] range:NSMakeRange(0,7)];

    (4)、设置段落样式

    NSMutableParagraphStyle *paragraph = [[NSMutableParagraphStyle alloc] init];//行间距paragraph.lineSpacing =10;//段落间距paragraph.paragraphSpacing =20;//对齐方式paragraph.alignment = NSTextAlignmentLeft;//指定段落开始的缩进像素paragraph.firstLineHeadIndent =30;//调整全部文字的缩进像素paragraph.headIndent = 10;

    (5)、添加段落设置

    [attrStr addAttribute:NSParagraphStyleAttributeName value:paragraphrange:NSMakeRange(0, [strlength])];

    (6)、添加链接 

    label添加链接注意:label链接是可以显示出来,但是不能点击,而textView是可以点击的,因为里面有shouldInteractWithURL代理方法回调。

    NSString*urlStr = @"www.baidu.com";NSURL*url = [NSURLURLWithString:urlStr];[attrStr addAttribute:NSLinkAttributeName value:url range:NSMakeRange(2,7)];

    (7)、一次性搞定:设字号为20,字体颜色为红色

    NSDictionary*attDict = [NSDictionarydictionaryWithObjectsAndKeys:  [UIFontsystemFontOfSize:20.0],NSFontAttributeName,  [UIColorredColor],NSForegroundColorAttributeName,nil];NSMutableAttributedString *AttributedStr = [[NSMutableAttributedString alloc]  initWithString:@"犯我华夏者,虽远必诛!"attributes:attDict];

    4、label其他一些常用属性:

    //创建labelUILabel*label = [[UILabelalloc] initWithFrame:CGRectMake(60,100,200,0)];//设置背景颜色label.backgroundColor= [UIColorlightGrayColor];//自动换行label.numberOfLines=0;//设置label的富文本label.attributedText= attrStr;//label高度自适应[label sizeToFit];//打印高度CGFloatheight = label.frame.size.height;NSLog(@"height = %f",height);

    PS:设置sizeToFit之后是可以取出label的高度的,这样做label高度自适应。但是如果你用第三方框架(如:Masonry)给其加约束,因为约束优先级最高,所以这句会失效

    相关文章

      网友评论

          本文标题:iOS开发之UILabel(富文本)

          本文链接:https://www.haomeiwen.com/subject/gasucftx.html