1. 程式人生 > >Label顯示html文本

Label顯示html文本

nds Coding gen error ring unicode text class 100g

    NSString * htmlString = @"<p>主要原料:葛根提取物、杜仲葉提取物、天麻提取物</p><p>功效成分:100g含:葛根素4.8g</p><p>保健功能:輔助降血壓</p><p>食用方法:每日3次,每次2粒,口服。</p><p>適宜人群:血壓偏高者</p><p>不適宜人群:少年兒童、孕婦、乳母。</p><p>凈含量: 0.35g/粒×90粒/瓶</p><p>批準文號:國食健字G20130523</p><p>註意事項:本品不能代替藥品</p><p>統一售價:¥380</p><p></p>
"; NSAttributedString * attrStr = [[NSAttributedString alloc] initWithData:[htmlString dataUsingEncoding:NSUnicodeStringEncoding] options:@{ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType } documentAttributes:nil error:nil]; UILabel * testLabel = [[UILabel alloc] initWithFrame:self.view.bounds]; testLabel.numberOfLines
= 0; testLabel.attributedText = attrStr; [self.view addSubview:testLabel];

Label顯示html文本