热搜:NVER node 开发 php

UILabel用原生方法显示HTML文本_html/css_WEB-ITnose

2024-11-08 13:40:01
UILabel用原生方法显示HTML文本_html/css_WEB-ITnose

NSString * htmlString = @"今天中午去哪吃什么??? ";    NSAttributedString * attrStr = [[NSAttributedString alloc] initWithData:[htmlString dataUsingEncoding:NSUnicodeStringEncoding] options:@{ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType } documentAttributes:nil error:nil];    UILabel * myLabel = [[UILabel alloc] initWithFrame:self.view.bounds];    myLabel.attributedText = attrStr;    [self.view addSubview:myLabel];