XSLT in a UIWebView using iOS SDK 4.2

心已入冬 提交于 2019-11-27 18:35:31

问题


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.


回答1:


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.



来源:https://stackoverflow.com/questions/5100051/xslt-in-a-uiwebview-using-ios-sdk-4-2

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!