It seems that there are quite a few memory management WKWebView for WKWebView , as well as some iOS 9 security changes that may be useful to solve your problem.
HERE is an argument in support of Apple explaining why your WKWebView is returning empty, and not just your application crashing:
While it is possible that the WKWebView process may exceed your memory budget, this will not cause your application to terminate or lead to a simple presentation.
In addition, this question sheds light on the NSAppTransportSecurity Protocol (iOS 9 changes), which also cause a similar problem. Although this is not memory related, it might be worth a peek if you are using an insecure URL in an instance of WKWebView.
If you use the HTTP URL during any request, you need to include:
<key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key><true/> </dict>
in your .plist application.
If you still cannot solve the problem, I would recommend checking the chrome forum for WKWebView, along with a possible lowering of the quality parameter for the camera plug-in to reduce the memory problem.
source share