私は xcode 8 ベータ版に取り組んでおり、エラーを下回り、解決できません。
performSelector
タイプ '(String)' の引数リストで' ' を呼び出すことはできません
func webView(WebViewNews: UIWebView!, shouldStartLoadWithRequest request: NSURLRequest!, navigationType: UIWebViewNavigationType) -> Bool {
if request.URL!.absoluteString.hasPrefix("ios:") {
// Call the given selector
self.performSelector("webToNativeCall")
// Cancel the location change
return false
}
return true
}