1

私は 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
 }
4

1 に答える 1