fngr

Results 2 comments of fngr

Thank you!!!!!!!!

Add this on Chapter.m in webViewDidFinishLoad int heightBefore = [[webView stringByEvaluatingJavaScriptFromString:@"document.body.scrollHeight"] intValue]; ``` NSString *imagesRule = [NSString stringWithFormat:@"addCSSRule('img', 'max-height: %fpx;')",webView.frame.size.height-10]; [webView stringByEvaluatingJavaScriptFromString:imagesRule]; int heightAfter = [[webView stringByEvaluatingJavaScriptFromString:@"document.body.scrollHeight"] intValue]; if(heightAfter!=heightBefore) heightChanged...