我必须通过将从我的 API 获取的一些数据添加到我在本地拥有的 HTML 文件中来创建 UIWebview。这是我第一次必须这样做,但我找不到如何做到这一点。
我的 HTML 文件如下所示:
<h1>%%%title%%%</h1>
<p class="date">%%%date%%%</p>
<a %%%hrefimage%%% class="link-diapo">
<div class="image">
<img src="%%%img%%%" alt="%%%title%%%"/>
%%%diapo%%%
</div>
</a>
<div id="content" style="font-size:%%%size%%%px;">
<p>%%%chapo%%%</p>
<p>%%%html%%%</p>
<p class="source">%%%author%%%</p>
</div>
和我的数据:
"title": "My title",
"date": "2013-07-10",
"hour": "19h45",
"chapo": "blablabla",
"author": "Me",
"description": "html text"
...
有没有一种方法可以轻松做到这一点?还是我必须检测我的 HTML 文件中的 %%% ?
谢谢 !