как получить полосу прокрутки из JavaScript в iphone - PullRequest
0 голосов
/ 22 февраля 2012

Я пытаюсь загрузить файл epub из главы в веб-просмотр.Я хочу знать ширину экрана.

Например:

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];

1 Ответ

0 голосов
/ 22 февраля 2012

Используйте это

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

"document.body.scrollWidth" возвращает ваш размер содержимого UIWebView.

...