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.heightdocument.width从 javascript

// 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 回答