Possible Duplicate:
Correct way to load image into UIWebView from NSData object
I am having NSData
downloaded from server for which i am having MIME
type also. But i dont know how to load this NSData
into UIWebView
.
I just tried it as,
[mywebView loadData:myData MIMEType:myMimeType textEncodingName:@"UTF-8" baseURL:nil];
My mime type is something similar to @"image/jpeg".
But all i am getting is white blank screen. I have refered few documents, nothing helped me.
Any suggestion would be appreciated.
Thanks in advance.