代码之家  ›  专栏  ›  技术社区  ›  Asleepace

从HTML计算NSAttributed字符串的大小

  •  0
  • Asleepace  · 技术社区  · 5 年前

    我使用UITextView来显示某个给定HTML中的NSAttributed字符串,它可以包括粗体、斜体、列表、标记、super&下标等。

    目前,下面的代码只适用于文本的段落,但一旦我开始添加更复杂的元素,如列表和换行符,大小就完全不合适了。

    // Create the NSMutableAttributedString from given HTML
    NSData *data = [string dataUsingEncoding:NSUTF8StringEncoding];
    NSDictionary *options = @{NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType,
                              NSCharacterEncodingDocumentAttribute: @(NSUTF8StringEncoding)};
    NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithData:data options:options
                                   documentAttributes:nil error:nil];
    
    // Max size for the text container (no limit on height)
    CGSize bounds = CGSizeMake(320.0, CGFLOAT_MAX);
    
    // Set the font and size for better rendering results
    UIFont *font = [UIFont fontWithName:@"Roboto" size:14.0];
    NSDictionary *attrFont = [NSDictionary dictionaryWithObject:font forKey:NSFontAttributeName];
    NSRange range = NSMakeRange(0, str.length);
    [str addAttributes:attrFont range:range];
    
    // Calcualte the size of the UITextView based on the above parameters
    CGRect rect = [str boundingRectWithSize:bounds options:NSStringDrawingUsesLineFragmentOrigin|NSStringDrawingUsesFontLeading|        NSStringDrawingUsesDeviceMetrics context:nil];
    

    我做了一些搜索,找到了这个线索,但在尝试了那里的建议后,它似乎仍然不起作用,想知道是否有人知道更好的方法来做到这一点?

    Calculate Height Of NSAttributedString Containing HTML

    0 回复  |  直到 5 年前
        1
  •  1
  •   Asleepace    5 年前

    好吧,在反复摆弄之后,我发现尺寸实际上是正确的,但是 UITextView 有一些导致溢出的填充/插入。在textView上设置以下选项修复了该问题

    [self.textView setTextContainerInset:UIEdgeInsetsZero];
    self.textView.textContainer.lineFragmentPadding = 0;