我一直在尝试在我的 uiwebview 中显示一个 xml 文件。我试过使用 NSURLRequest 但 UIWebview 显示为空白。我可以使用下面的代码显示本地 xml。有没有办法从定义的网站而不是从本地文件中提取它,或者下载文件然后显示它?
NSString *htmlFile = [[NSBundle mainBundle] pathForResource:@"location" ofType:@"xml"];
NSData *htmlData = [NSData dataWithContentsOfFile:htmlFile];
[aWebView loadData:htmlData MIMEType:@"text/text" textEncodingName:@"UTF-8" baseURL:[NSURL URLWithString:@""]];