0

我正在尝试将章节中的 epub 文件加载到 webview 中。我想知道屏幕的宽度。

例如:

if the content have one and half page text means it returns the width to be as 768
but
if the content have two full page text means it returns the width to be as 1536

我的代码是:

int totalWidth = [[webView stringByEvaluatingJavaScriptFromString:@"document.documentElement.scrollWidth"] intValue];
4

1 回答 1

0

用这个

[[webView stringByEvaluatingJavaScriptFromString:@"document.body.scrollWidth"] intValue];

"document.body.scrollWidth" 返回 UIWebView 内容的大小。

于 2012-02-22T11:07:08.617 回答