[Solved] How to Create Two WkWebView

[ad_1]

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

[ad_2]

solved How to Create Two WkWebView