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 富文本设置图片大小以及字体大小的主要内容,如果未能解决你的问题,请参考以下文章
[Android开发]富文本TextView修改部分字体颜色大小加粗斜体下划线删除线,以及添加点击事件,插入本地或网络图片