在UIWebView中加载UIImage表单NSData并将其居中

时间:2013-03-21 09:54:55

标签: iphone ios cocoa-touch uiwebview uiimage

所以我基本上得到NSData UIImage并使用UIWebView来显示它。我这样做:

[self.view addSubview:webView];

webView.delegate = self;
webView.scalesPageToFit = YES;
webView.backgroundColor = [UIColor darkGrayColor];

然后我将图片加载到其中:

NSData *image02Data = attachmentToLoad.attachment_data;
[webView loadData:image02Data MIMEType:@"image/jpg" textEncodingName:nil baseURL:nil];

我得到的结果并非我想要的结果:

enter image description here

如您所见,图像在UIWebView的底部留下了白色底线。如何使UIWebView的大小等于图像的大小?

1 个答案:

答案 0 :(得分:1)

你看过这篇文章吗? Click me

我认为这完全是你想要的