私は小さな を使用してUIWebView
いscalesPageToFit
ますが、一部の URL では正しく機能しません。(100%でサイズ変更できないように見えます。(ただし、Webビューを手動でズームアウトすると(ジェスチャー)、機能します!
view = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 200.0f, 400.0f)];
webViewT = [[UIWebView alloc] initWithFrame:view.bounds];
webViewT.delegate = self;
webViewT.scalesPageToFit = YES;
NSURL* url = [NSURL URLWithString:@"http://www.google.com/"];
[webViewT loadRequest:[NSURLRequest requestWithURL:url]];
私は解決策を見つけたことに注意してください:(仕事の下で、しかし私は「サイズ変更」を見る時間があります
- (void) webViewDidFinishLoad:(UIWebView *)webViewT {
if ([theWebView respondsToSelector:@selector(scrollView)])
{
UIScrollView *scroll=[theWebView scrollView];
float zoom=theWebView.bounds.size.width/scroll.contentSize.width;
[scroll setZoomScale:zoom animated:NO];
}
}
何か案が?ありがとう!