0

このようなGif画像を読み込みます

[webView2 loadData:[NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Apple_jumps" ofType:@"gif"]] MIMEType:@"image/gif" textEncodingName:nil baseURL:nil];

uiwebviewの中心位置に設定したいのですが、コンテンツの幅が取れません。助けてください。

4

1 に答える 1

0

document.heightまたはdocument.widthjavascriptから使用できます

// in init
_WebView.delegate = YourClass; // probably self

- (void) webViewDidFinishLoad:(UIWebView *)webview
{
  int w = [[_WebView stringByEvaluatingJavaScriptFromString:@"document.width"] floatValue];
  _WebView.userInteractionEnabled = w > 200;
}

詳細はこちら: https://www.albertopasca.it/whiletrue/objective-c-get-uiwebview-html-page-size/

于 2013-02-14T08:19:02.960 に答える