How to load a string like below in UIWebview
\"\\n \\nEgestas rhoncus auctor ac. Risus parturient, mid ultrices nisi.\\U00a0 \\nAugue ac elementum duis aliquet d
This is pretty simple As Below,
[self.webView loadHTMLString:htmlString baseURL:nil];
You can specify the baseURL to get relative paths working. Is this what you were looking for ? Or more general explanations about UIWebView ?
baseURL
UIWebView ?