NJKWebViewProgress icon indicating copy to clipboard operation
NJKWebViewProgress copied to clipboard

UIWebView progress interface

Results 43 NJKWebViewProgress issues
Sort by recently updated
recently updated
newest added

如果您的应用仍使用不推荐使用的UIWebView API嵌入网络内容,我们强烈建议您尽快更新到WKWebView,以提高安全性和可靠性。WKWebView通过将Web处理限制在应用程序的Web视图中,确保受损的Web内容不会影响应用程序的其余部分。iOS和macOS以及Mac Catalyst都支持它。 自2020年4月起,App Store将不再接受使用UIWebView的新应用程序,而自2020年12月起将不再接受使用UIWebView的应用程序更新。

if (interactive) { _interactive = YES; NSString *waitForCompleteJS = [NSString stringWithFormat:@"window.addEventListener('load',function() { var iframe = document.createElement('iframe'); iframe.style.display = 'none'; iframe.src = '%@://%@%@'; document.body.appendChild(iframe); }, false);", webView.request.mainDocumentURL.scheme, webView.request.mainDocumentURL.host, completeRPCURLPath]; [webView stringByEvaluatingJavaScriptFromString:waitForCompleteJS];...

你好,我在使用这个库的时候,发现我们的某些链接在UIWebview控件加载的过程中,进度条会卡到一半不动。请问这是怎么回事?(在iOS10,11上都有出现,只是针对我们自己的个别链接会这样,我们的链接是 http://registrationuat.gtdreamlife.com/#/openProject)。

How to use in WKWebView ? how to set delegate (WKWebview have WKNavigationDelegate and WKUIDelegate)

Hey @ninjinkun, this is a great library but I have noticed that you are not merging pull requests any more. Perhaps you can add other maintainers who can merge them?...

if a html contains of the operation for hash changed,the progress maybe never finish.

`webViewDidFinishLoad` may call multi-times, so iframe may create multiple as well, lead to `completeProgress` call multiple, not necessary.