Share WebView Configuration - fan-ADN/nendSDK-iOS GitHub Wiki

You can set some properties of the WkWebView configuration by using the NADWebViewConfiguration class.

processPool

You can set the processPool property to use with the WebView configuration.

Swift
let processPool = WKProcessPool()
NADWebViewConfiguration.sharedInstance().processPool = processPool
Objective-C
WKProcessPool *processPool = [WKProcessPool new];
[NADWebViewConfiguration sharedInstance].processPool = processPool;
⚠️ **GitHub.com Fallback** ⚠️