美文网首页
通过富文本的方式添加行间距和字间距

通过富文本的方式添加行间距和字间距

作者: 沃伦盖茨 | 来源:发表于2018-03-07 15:56 被阅读15次

    通过富文本的方式添加行间距和字间距

    //字间距

    NSDictionary*toastLabelDic =@{NSKernAttributeName:@10.0f};

    //行间距

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

    [paragraphStyle setLineSpacing:30];

    NSDictionary*paragraphLabelDic =@{NSParagraphStyleAttributeName:paragraphStyle};

    //富文本

    NSMutableAttributedString*attributedString = [[NSMutableAttributedString alloc] initWithString:toastStr attributes:paragraphLabelDic];

    相关文章

      网友评论

          本文标题:通过富文本的方式添加行间距和字间距

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