I will receive an XML from Server, and have to parse the xml file, and based on that have to populate textbox, listbox etc(a form) in UIWebView.
I know XML parsing for iOS using NSXML, I do not know how to fire events to generate Form/UI at runtime.
Any tutorials or idea pls.
If you have created your HTML as a NSString already, you can load it into the UIWebView by using the method
loadHTMLString:baseURL:. For example:Changing the htmlString after calling
loadHTMLString:baseURL:won’t update the UIWebView. You will need to call the method again, sending the modified string.If you need further help, comment below and I’ll edit my answer or comment back.