XSLT in a UIWebView using iOS SDK 4.2
Asked Answered
R

1

6

Is it possible to use XSLT in a UIWebView using iOS SDK 4.2? Alternatively, is it possible to use XSLT in iOS SDK 4.2 outside of a UIWebView? I have seen similar questions to this, but they seem to be dated and refer to pre-4.0 iOS SDKs.

If it is possible, a link to a simple iOS XSLT example would be great too.

TIA.

Running answered 24/2, 2011 at 3:27 Comment(3)
"Possible" also means in a way acceptable to Apple and their AppStore.Running
hi erik.. were you able to find the solution to this one? I am stuck with this same problem...Cissie
learner2010: see my answer below.Running
R
6

The answer is yes. Here's an example:

NSString *path = [[NSBundle mainBundle] bundlePath];
NSURL *baseURL = [NSURL fileURLWithPath:path];
NSString *xml = @"<?xml version=\"1.0\"?><?xml-stylesheet type=\"text/xsl\" href=\"greeting.xsl\"?><greeting>Hello, World!</greeting>";
[self.webView loadData:[xml dataUsingEncoding:NSUTF8StringEncoding] MIMEType:@"text/xml" textEncodingName:@"utf-8" baseURL:baseURL];

I was having problems with this because I was trying to load XML using the UIWebView's

- (void)loadHTMLString:(NSString *)string baseURL:(NSURL *)baseURL

method.

Running answered 24/2, 2011 at 21:23 Comment(5)
thanks for the reply.. I had come across your post earlier but had a doubt.. so just the above piece of code would work right? we would not need to use the loadHTMLString function right?Cissie
It's been a while since I coded this, but if memory serves, the loadHTMLString won't do any XSLT processing. The loadData code does.Running
I have a question.. in the above piece of code, If I am getting the xml from the webservice, how would I add the <?xml-stylesheet type="text/xsl" href="trial.xsl"?> code to the xml?Cissie
Also, could you tell me where should I be storing the xsl file?Cissie
Put the xsl file in your main bundle.Running

© 2022 - 2024 — McMap. All rights reserved.