XSLT in a UIWebView using iOS SDK 4.2

后端 未结 1 1509
不知归路
不知归路 2020-12-17 02:00

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

相关标签:
1条回答
  • 2020-12-17 02:39

    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.

    0 讨论(0)
提交回复
热议问题