如何在ios 7中加载到webview之前计算html字符串的高度?

前端之家收集整理的这篇文章主要介绍了如何在ios 7中加载到webview之前计算html字符串的高度?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想找到来自webservice的html字符串的高度.请建议我最好的解决方案.

提前致谢

解决方法

对此进行一些解决方法是将 HTML加载到NSAttributedString并获得它的高度.
NSAttributedString *text = [[NSAttributedString alloc] initWithData:[html dataUsingEncoding:NSUTF8StringEncoding]
                                                            options:@{NSDocumentTypeDocumentAttribute : NSHTMLTextDocumentType,NSCharacterEncodingDocumentAttribute : @(NSUTF8StringEncoding)}
                                                 documentAttributes:nil
                                                              error:nil]; // make sure to check for error in a real app

// Then get the bounding rect based on a known width
CGRect textFrame = [text boundingRectWithSize:CGSizeMake(someKnownWidth,CGFLOAT_MAX)
                                      options:NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading
                                      context:nil];

CGFloat height = textFrame.size.height;

我没有尝试过各种HTML,所以YMMV.

原文链接:https://www.f2er.com/iOS/331438.html

猜你在找的iOS相关文章