从 iPhone 中的 CDATA 节点提取 HTML
<item>
<data>
<![CDATA[
<p>Test</p>
<p><strong>Hi!</strong><br />Hello.</p>
]]>
</data>
</item>
使用 TouchXML/NSXMLParser 如何仅将 HTML 部分提取为字符串/适当的数据格式,以便可以在 UIWebView 中显示它?
这绝对是可能的:http:// code.google.com/p/touchcode/issues/detail?id=36&can=1&q=cdata
<item>
<data>
<![CDATA[
<p>Test</p>
<p><strong>Hi!</strong><br />Hello.</p>
]]>
</data>
</item>
Using TouchXML/NSXMLParser How can i extract only the HTML part into a string/appropriate data format so that I can display it in a UIWebView?
It's definitely possible: http://code.google.com/p/touchcode/issues/detail?id=36&can=1&q=cdata
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TouchXML 将自动解析它。如果您检索 CXMLElement 的 stringValue,您将获得完整的“原始”html,格式正确。
TouchXML will parse it automatically. If you retrieve the stringValue of the CXMLElement you will get the full "raw" html back, properly formed.