美文网首页iOS开发·视图篇ios菜鸟收集区
iOS-13-UILabel设置缩进、行距、字体颜色

iOS-13-UILabel设置缩进、行距、字体颜色

作者: 小东门儿 | 来源:发表于2017-02-23 11:27 被阅读46次
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(10, 70, 300, 200)];

    label.numberOfLines = 0;

    label.backgroundColor = [UIColor colorWithRed:235/255.0 green:235/255.0 blue:235/255.0 alpha:1];

    

//------

    NSMutableAttributedString *text = [[NSMutableAttributedString alloc] initWithString:@"1321313123211273127318273819273817381738713712837173812731837128371297319737131719371273187328193721731793\n"];

    

    //设置字体颜色

    [text addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(0, text.length)];

    

    //设置缩进、行距

    NSMutableParagraphStyle *style = [[NSMutableParagraphStyle alloc] init];

    style.headIndent = 30;//缩进

    style.firstLineHeadIndent = 0;

    style.lineSpacing = 10;//行距

    [text addAttribute:NSParagraphStyleAttributeName value:style range:NSMakeRange(0, text.length)];

//------

    

    

    

//------

    NSMutableAttributedString *text2 = [[NSMutableAttributedString alloc] initWithString:@"eqeqeuqoeuquequeqeqwuequeqoueqowueqoueqoshfkahfksdafhkalhfkdshf"];

    //设置字体颜色

    [text2 addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NSMakeRange(0, text2.length)];

    

    //设置缩进、行距

    NSMutableParagraphStyle *style2 = [[NSMutableParagraphStyle alloc] init];

    style2.headIndent = 0;

    style2.firstLineHeadIndent = 20;

    style2.lineSpacing = 5;

    [text2 addAttribute:NSParagraphStyleAttributeName value:style2 range:NSMakeRange(0, text2.length)];

//------

    

    [text appendAttributedString:text2];

    

    label.attributedText = text;

    [self.view addSubview:label];

相关文章

  • iOS-13-UILabel设置缩进、行距、字体颜色

  • iOS //设置缩进、行距

  • 校对

    # 校对Check List ## 文字 - 字体不超三种 - 字号分级 - 段落缩进 - 文字通顺 - 行距统一...

  • PPT自学(4)丨替换字体有妙招,让你有机会提早下班!

    提到在PPT中替换字体,最初的时候我是这样做的,每一页框选文字,然后选择字体、字号、行距设置、颜色。但我的工作项目...

  • 2020-06-22

    96排版训练营学习心得 21天训练营收获及技能: 1、如何设置正文、标题的字号大小、字体颜色、字体背景、行距、字间...

  • 2020-06-22

    96排版训练营学习心得 21天训练营收获及技能: 1、如何设置正文、标题的字号大小、字体颜色、字体背景、行距、字间...

  • 2020-06-22 96排版训练营

    96排版训练营学习心得 21天训练营收获及技能: 1、如何设置正文、标题的字号大小、字体颜色、字体背景、行距、字间...

  • css文本 表格 定位 显示 列表

    文本格式化 文本格式化控制字体:如字体大小、字体加粗、字体系列等设置文本格式:如文本颜色,文本排列和文本缩进等 字...

  • UIWebView利用js设置字体大小

    1、UIWebView设置字体大小,颜色,字体:1、UIWebView设置字体大小,颜色,字体: UIWebVie...

  • 「CSS」文本

    字体改变字号改变字体加粗字体倾斜字体更改行距font shorthand改变文字颜色 对齐方式文字居中文本垂直对齐...

网友评论

    本文标题:iOS-13-UILabel设置缩进、行距、字体颜色

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