[Solved] How to Create Two WkWebView


var item = WKWebView()
item.frame = CGRectMake(0, 0,
        self.view.bounds.width, 200.)
self.view.addSubview(item)

item = WKWebView()
item.frame = CGRectMake(0, self.view.bounds.height-200.,
        self.view.bounds.width, 200.)
self.view.addSubview(item)

This code add WKWebView at the top and bottom of self.view.

9

solved How to Create Two WkWebView