Share WebView Configuration - fan-ADN/nendSDK-iOS GitHub Wiki
You can set some properties of the WkWebView configuration by using the NADWebViewConfiguration class.
You can set the processPool property to use with the WebView configuration.
Swift
let processPool = WKProcessPool()
NADWebViewConfiguration.sharedInstance().processPool = processPoolObjective-C
WKProcessPool *processPool = [WKProcessPool new];
[NADWebViewConfiguration sharedInstance].processPool = processPool;