I plan to use XML/XSLT in my iPhone application.
What version of XSLT is currently supported on the iPhone? Can I use XSLT 2.0 or just 1.0 ?
|
I plan to use XML/XSLT in my iPhone application. What version of XSLT is currently supported on the iPhone? Can I use XSLT 2.0 or just 1.0 ? |
|||
|
|
|
Using
And finally you can use a code similar to the sample above to get the tranformation result into an
|
|||||||||
|
|
As Lou Franco points out, you're not allowed dylibs on the iPhone. It'll work fine in development both in the simulator and the phone but it'll be rejected as soon as you submit it to Apple for approval. My app was rejected within about 20 minutes, presumably by their automated static analysis tool. Instead, download the source, add it to your project, link the LibXML2.2.dylib (don't ask me why this dylib is allowed but the XSLT isn't!) and build the project. That's pretty much all you have to do. Credit to Lou for this as it was he who pointed me in the right direction. |
|||||
|
|
I'm afraid the xslt situation is rather grim. The TouchXML plans xslt support but doesn't have it yet. The only option I know of is to directly use libxslt, which supports xslt 1.0 and some of the exslt extensions. |
|||
|
|
|
You cannot use libxslt on the iPhone even if you compile it and build it yourself. I have done that and have had my app rejected repeatedly. The tools used by the AppReview process do not distinguish between statically linked symbols in your code and dynamically linked symbols from the iOS. In other words, if it looks like you are using libxslt, your app will get rejected because the appstore cannot tell if you are using a private API. |
|||
|
|
|
Same question here. I found some sample libxslt code in C here., but I'm not sure how to incorporate that into an iPhone/ObjC app. I'm already linking in libxml2...
...would I need to do something similar for libxsl? |
||||
|
|