iOS UILabel顯示html標籤
iOS7以後系統提供了顯示html標籤的方法
UIKIT_EXTERN NSString *const NSHTMLTextDocumentType NS_AVAILABLE_IOS(7_0);
直接上程式碼
NSString *str = @"<font color="#6c6c6c">滿20減5 滿40減15,還剩<font color="#ff9147">113天";
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(30, 50, 300, 50)];
NSAttributedString *attrStr = [[NSAttributedString alloc] initWithData:[str dataUsingEncoding:NSUnicodeStringEncoding] options:@{NSDocumentTypeDocumentAttribute:NSHTMLTextDocumentType} documentAttributes:nil error:nil];
label.attributedText = attrStr;
//如果想要改變文字的字型,請在設定attributedText之後設定
label.font = [UIFont systemFontOfSize:20];
[self.view addSubview:label];
相關文章
- Android中顯示html標籤或者帶圖片AndroidHTML
- ios顯示html標籤,超連結顏色以及下劃線的處理iOSHTML
- 標籤的顯示模式模式
- UILabel居中顯示的方法UI
- QT設定標籤顯示位置QT
- HTML <a> 標籤HTML
- HTML 標籤HTML
- HTML 標籤HTML
- html標籤HTML
- iOS開發筆記-40: UILabel上面新增uiview無法顯示iOS筆記UIView
- IOS 學習筆記(4) 控制元件 標籤(UILabel)的使用方法iOS筆記控制元件UI
- HTML標籤(基本標籤的使用)HTML
- ReactNative IOS下Image標籤載入網路圖片不顯示ReactiOS
- 關於pycharm無法顯示tag標籤PyCharm
- HTML <var> 標籤HTML
- HTML <canvas> 標籤HTMLCanvas
- HTML <article> 標籤HTML
- HTML <section> 標籤HTML
- HTML <main> 標籤HTMLAI
- HTML <time> 標籤HTML
- html標籤整理HTML
- HTML <footer> 標籤HTML
- HTML <nav> 標籤HTML
- HTML <body>標籤HTML
- HTML <meta>標籤HTML
- html基本標籤HTML
- HTML <iframe>標籤HTML
- HTML <span>標籤HTML
- HTML 常用標籤HTML
- HTML常用標籤HTML
- HTML <div>標籤HTML
- html標籤使用HTML
- HTML標籤(1)HTML
- html列表標籤HTML
- HTML標籤(2)HTML
- HTML標籤(3)HTML
- html meta標籤HTML
- HTML DOCTYPE 標籤HTML