Version of XSLT in iPhone - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T07:20:28Zhttp://stackoverflow.com/feeds/question/462440http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/462440/version-of-xslt-in-iphone2Version of XSLT in iPhonetillda2009-01-20T18:18:36Z2009-01-21T22:49:39Z
<p>I plan to use XML/XSLT in my iPhone application. </p>
<p>What version of XSLT is currently supported on the iPhone? Can I use XSLT 2.0 or just 1.0 ?</p>
http://stackoverflow.com/questions/462440/version-of-xslt-in-iphone/462542#4625423Answer by Gordon Wilson for Version of XSLT in iPhoneGordon Wilson2009-01-20T18:42:05Z2009-01-20T18:42:05Z<p>I'm afraid the xslt situation is rather grim. The <code>NSXMLDocument</code> class would be the way to do this but Apple pulled it from the iPhone. </p>
<p><a href="http://code.google.com/p/touchcode/wiki/TouchXML" rel="nofollow">TouchXML</a> plans xslt support but doesn't have it yet.</p>
<p>The only option I know of is to directly use <a href="http://xmlsoft.org/XSLT/" rel="nofollow">libxslt</a>, which supports xslt 1.0 and some of the <a href="http://www.exslt.org/" rel="nofollow">exslt</a> extensions.</p>
http://stackoverflow.com/questions/462440/version-of-xslt-in-iphone/463577#4635770Answer by tillda for Version of XSLT in iPhonetillda2009-01-20T23:43:32Z2009-01-20T23:43:32Z<p>Is using libxslt a headache? I'm new to Cocoa and Obj-C.</p>
http://stackoverflow.com/questions/462440/version-of-xslt-in-iphone/466063#4660630Answer by snosons for Version of XSLT in iPhonesnosons2009-01-21T16:53:41Z2009-01-21T22:49:39Z<p>Same question here.</p>
<p>I found some <a href="http://xmlsoft.org/XSLT/tutorial/libxslttutorial.html" rel="nofollow">sample libxslt code in C here.</a>, but I'm not sure how to incorporate that into an iPhone/ObjC app.</p>
<p>I'm already linking in libxml2...</p>
<pre><code>Header Search Paths: /usr/include/libxml2
Other Linker Flags: -lxml2
</code></pre>
<p>...would I need to do something similar for libxsl?</p>