如何获得HTML归属文本的真实高度

时间:2014-04-05 11:52:18

标签: html objective-c ios7 autolayout nsattributedstring

我在这里遇到了一些复杂的情况。

我有一个Web服务器将JSON数据发送回我的应用程序,其中一个数据是HTML文本,例如json:

...
{
    id: 3,
    name: "Content Title",
    description: "<p>This is a paragraph block</p><p>This is another paragraph</p>",
}

正如您所知,HTML标记文本会增加另一层复杂性,因为HTML标记会修改实际文本的高度。

这样的字符串:

"Hello World" 

可能只有10像素高的普通字符串,但如果格式如下:

"<h1>Hello World</h1>"

真实的 高度可能高于10像素。

我想知道的是如何计算实际高度

这就是我用归因字符串计算UILabel高度的方法,但它似乎只给出了适合文本像素的高度,而不是实际的HTML元素块大小:

-(CGFloat)dynamicHeightForHTMLAttributedString:(NSString *)dataString UsingWidth:(CGFloat)width AndFont:(UIFont *)font
{
    NSDictionary *attrsDictionary = [NSDictionary dictionaryWithObject:font
                                                                forKey:NSFontAttributeName];

    NSMutableAttributedString *htmlString =
    [[NSMutableAttributedString alloc] initWithData:[dataString dataUsingEncoding:NSUTF8StringEncoding]
                                            options:@{NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType,
                                                      NSCharacterEncodingDocumentAttribute:[NSNumber numberWithInt:NSUTF8StringEncoding]}
                                 documentAttributes:NULL error:nil];

    [htmlString addAttributes:attrsDictionary range:NSMakeRange(0, htmlString.length)];

    CGRect rect = [htmlString boundingRectWithSize:(CGSize){width, CGFLOAT_MAX} options:NSStringDrawingUsesLineFragmentOrigin context:nil];

    CGSize size = rect.size;

    return ceilf(size.height);
}

这是正确的方法吗?

1 个答案:

答案 0 :(得分:0)

只有在获取实际高度时才需要考虑的事项:字体大小,行高,边距,填充,边框和固定高度值。

您可以检查所有这些并进行计算。

或者,如果你可以使用javascript,只需检查element.clientHeight