iOS 富文本设置图片大小以及字体大小

Posted 果然小行家

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS 富文本设置图片大小以及字体大小相关的知识,希望对你有一定的参考价值。

NSString *contentStr = [NSString stringWithFormat:@"<head><style>imgwidth:%f  !important;height:auto;</style></head>%@",SCREEN_WIDTH-30,text];

    

    NSMutableAttributedString *attributedString=  [[NSMutableAttributedString alloc] initWithData:[contentStr dataUsingEncoding:NSUnicodeStringEncoding] options:@NSDocumentTypeDocumentAttribute:NShtmlTextDocumentType documentAttributes:nil error:nil];

[attributedString addAttribute:NSFontAttributeName value:FONT(15) range:NSMakeRange(0, attributedString.length)];

    [attributedString addAttribute:NSForegroundColorAttributeName value:UIColorFromRGB(0x666666) range:NSMakeRange(0, attributedString.length)];

    

    CGSize attSize = [attributedString boundingRectWithSize:CGSizeMake([UIScreen mainScreen].bounds.size.width-64, MAXFLOAT) options:NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading context:nil].size;

以上是关于iOS 富文本设置图片大小以及字体大小的主要内容,如果未能解决你的问题,请参考以下文章

iOS 富文本设置图片大小以及字体大小

iOS 富文本编辑器(插入图片,设置字体)

layui 富文本字体可以调整大小吗

[Android开发]富文本TextView修改部分字体颜色大小加粗斜体下划线删除线,以及添加点击事件,插入本地或网络图片

ios ~ UIAlertcontroller 设置字体颜色

在高 DPI 设置下调整 RichTextBox 字体大小