将 XSLT 应用于来自 iOS 中 Web 服务的 XML
在我的 iPAD 应用程序中,我从 Web 服务获取 XML。我使用 NSURL 连接来调用 Web 服务并从中获取数据。我通常使用 NSXMLParser 解析 XML 并在 UITableView 上显示数据。
但由于要求,我需要获取 XML 并在其上应用 XSLT 并将其显示在 UIWebView 上。 我了解将 XSLT 应用于 XML 并显示它的基础知识。但是,我如何在代码中动态地执行此操作?
如果有人能帮助我解决这个问题,那就太好了。
In my iPAD application, I get an XML from a webservice.I use NSURL connection to call the Webservice and get Data from it. I usually parse the XML using NSXMLParser and display the data on a UITableView.
But due to a requirement I need to get the XML and apply and XSLT on it and display it on a UIWebView.
I know the basics of applying an XSLT to an XML and displaying it. However, how would I do it dynamically in my code?
It would be great if someone could help me with this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 libxslt - 请参阅此处了解更多信息 - iPhone 中的 XSLT 版本
you may use libxslt - see here for more info - Version of XSLT in iPhone