I have a problem when loading a text file with unicode content into a UIWebview.
How can I set Encoding for the UIWebview using loadRequest like this:
[myWebView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:tempFilePath]]];
This code seem to work but I can't use it to open MS Office file:
[myWebView loadData:[NSData dataWithContentsOfFile:tempFilePath] MIMEType:self._mimetype textEncodingName:@"UTF-8" baseURL:nil];
Thanks for helping me.