Identify Html tags on Xml parsing
I am doing an xml parsing and the response i am getti开发者_开发问答ng is a html code ..is it possible to load that response in a uiwebview..?
Thanks in advance
The following methods are probably going to be what you're looking for:
[webView loadHTMLString:NSString
baseURL:NSURL];
[webView loadData:NSData
MIMEType:NSString
textEncodingName:NSString
baseURL:NSURL];
You can pass an NSString
or NSData
object to the appropriate method and have it loaded into your webView easily.
Good luck,
Aurum Aquila
P.S. Those method signatures are hyperlinked.
精彩评论