是否有必要在 UIWebView 中定义<head>
并<body>
使用“loadHTMLString”?
loadHTMLString:baseURL:
在 UIWebView 中使用时,这两个 HTML 的结果相同。
1.
<html> <head> <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/> <meta name=\"viewport\" content=\"width=device-width, user-scalable=yes\"> </head> <body> <div class=label1-con3> <font color=#ff0000 size=3> <strong>Test</strong></font> </div> </body> </html>
2.
<div class=label1-con3> <font color=#ff0000 size=3> <strong>Test</strong></font> </div>