このような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/