我像这样加载 Gif 图像
[webView2 loadData:[NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Apple_jumps" ofType:@"gif"]] MIMEType:@"image/gif" textEncodingName:nil baseURL:nil];
我想设置为 uiwebview 的中心位置,但我无法获得内容的宽度。请帮忙。
您可以使用document.height
或document.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/