Version of XSLT in iPhone - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T07:20:28Z http://stackoverflow.com/feeds/question/462440 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/462440/version-of-xslt-in-iphone 2 Version of XSLT in iPhone tillda 2009-01-20T18:18:36Z 2009-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#462542 3 Answer by Gordon Wilson for Version of XSLT in iPhone Gordon Wilson 2009-01-20T18:42:05Z 2009-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#463577 0 Answer by tillda for Version of XSLT in iPhone tillda 2009-01-20T23:43:32Z 2009-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#466063 0 Answer by snosons for Version of XSLT in iPhone snosons 2009-01-21T16:53:41Z 2009-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>