This is the message I got from them:
We found that the experience your app provides is not sufficiently different from a web browsing experience, as
just change it with WKWebView and it will be accepted cause its a new guidelines imposed by apple recently
import WebKit
var webView: WKWebView!
override func loadView() {
let webConfiguration = WKWebViewConfiguration()
webView = WKWebView(frame: .zero, configuration: webConfiguration)
webView.uiDelegate = self
view = webView
}
override func viewDidLoad() {
super.viewDidLoad()
let myURL = URL(string:"https://www.apple.com")
let myRequest = URLRequest(url: myURL!)
webView.load(myRequest)
}