好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

UILabel可以显示html文本_html/css_WEB-ITnose

NSString * htmlString = @" Some html string \n This is some text! ”;

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];

查看更多关于UILabel可以显示html文本_html/css_WEB-ITnose的详细内容...

  阅读:38次