iOS4中的UIWebView ScalesToFit和AspectFit

时间:2012-03-21 01:54:00

标签: ios ios5 ios4 uiwebview

我一直试图在UIWebView中显示来自网络的一些图片。我一直在做的是直接在URL上使用loadRequest:方法,使用ScalesToFit = YES和AspectFit模式使其适合WebView框架。这在iOS5上工作正常,但在iOS4中没有。在iOS4中,图像显示为缩小。

Here's a screenshot of it in iOS5

And what I get in iOS4

根据我的阅读,iOS5附带了集成的ScrollView,而iOS4及更早版本则没有。是因为那个吗?如果是的话,我怎样才能完成我想要做的事情?我已尝试将UIWebView置于UIScrollView内并设置scalesToFit和AspectView设置,但我仍然得到相同的结果。

1 个答案:

答案 0 :(得分:1)

为什么不先下载图片?我写这个函数是为了做到这一点:

-(void)loadImageFromURL:(NSString*)url{
    [delegate didBeginLoadingFromURL:url];

    NSData * imageData = [[NSData dataWithContentsOfURL:[NSURL URLWithString:url]] retain];
    UIImage *image = [[UIImage alloc] initWithData:imageData];  

    if (delegate && [delegate respondsToSelector:@selector(didRecieveImage:FromURL:)]) { //Make sure the delegage still exists and what not ;)
             [delegate didRecieveImage:image FromURL:url];
    }

    [imageData release];
    [image release];

}