美文网首页
代码添加UILable中划线和下划线。

代码添加UILable中划线和下划线。

作者: 不要动 | 来源:发表于2018-12-13 17:05 被阅读29次

    //中划线
    2
    3 NSDictionary *attribtDic = @{NSStrikethroughStyleAttributeName: [NSNumber numberWithInteger:NSUnderlineStyleSingle]};
    4 NSMutableAttributedString *attribtStr = [[NSMutableAttributedString alloc]initWithString:@"内容" attributes:attribtDic];
    5 label.attributedText = attribtStr;
    6
    7 //下划线
    8
    9 NSDictionary *attribtDic = @{NSUnderlineStyleAttributeName: [NSNumber numberWithInteger:NSUnderlineStyleSingle]};
    10 NSMutableAttributedString *attribtStr = [[NSMutableAttributedString alloc]initWithString:@"内容" attributes:attribtDic];
    11 label.attributedText = attribtStr;

    相关文章

      网友评论

          本文标题:代码添加UILable中划线和下划线。

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