2017-10-11 85 views
0

我从Web服务获取HTML字符串并将其加载到UIWebView上。一个示例html字符串是这样的。如何在swift中更改现有HTML字符串的样式?

" <div class='wg-rs-workAnniversary'> <div class='greetingtext'><span class='years work-years'>1 <sup>-</sup></span> <span class='event'>Work <br> Anniversary</span></div> <input type='hidden' class='hid-work-years' value='1'/> </div> <div class='wg-rs-btext work-years'>ABC Employee celebrates his 1<sup>-</sup> work anniversary today</div>" 

我加载它后,它只是一个黑色的文字。我想增加这些文字的大小,改变颜色并将它居中在UIWebView上。我怎样才能迅速做到这一点?请帮帮我。

+0

下面我想你应该增加这些文本的大小,改变颜色和中心HTML。然后在UIWebView上加载它。 –

回答

1

哟可以通过在你的html字符串中添加样式来实现。

let htmlText = " <div class='wg-rs-workAnniversary'> <div class='greetingtext'><span> class='years work-years'>1 <sup>-</sup></span> <span> class='event'>Work <br> Anniversary</span></div> <input type='hidden'> class='hid-work-years' value='1'/> </div> <div class='wg-rs-btext> work-years'>ABC Employee celebrates his 1<sup>-</sup> work anniversary> today</div>" 
let htmlTextWithStyle = htmlText + ("<style>body{font-family: '\(UIFont.systemFont(ofSize: 12.0))'; font-size:\(14.0);}</style>") 

要居中,您可以添加在你的HTML字符串

"<style type='text/css'>html,body {margin: 0;padding: 0;width: 100%;height: 100%;}html {display: table;}body {display: table-cell;vertical-align: middle;padding: 20px;text-align: center;-webkit-text-size-adjust: none;}</style>" 
+0

谢谢。我会试试这个。你能告诉我如何使它成为UIWebView的中心吗? – das

+0

查看我编辑的答案,以查看您的内容。 –

+0

希望它能帮助你... –

相关问题