2016年8月9日 星期二

HTML+UILabel(or TextView)

On swift
var attrStr = try! NSAttributedString(
        data: "text".dataUsingEncoding(NSUnicodeStringEncoding, allowLossyConversion: true)!,
        options: [ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType],
        documentAttributes: nil)

label.attributedText = attrStr

On java
myTextView.setText(Html.fromHtml("

Title


Description here
"
));

沒有留言: