Hi,
I have an image encoded in BASE64 which I retrieve from a server and than load into a UIWebView with :
[webViewer loadData:[NSData decodeBase64ForString:imageData] MIMEType:@"image" textEncodingName:@"ASCII" baseURL:nil];
The image loads fine but when the image is bigger than my webviewer, the user cannot zoom in and out by pinching the iphone like in all other UIWebView documents.
The user can move the picture around to see the whole picture but since they cannot zoom out, they cannot see the whole picture in the size of the UIWebView frame.
Does anyone have a solution to this problem. Thanks.