skip to Main Content

I am using a Flutter package named webview_flutter (4.2.0), and facing an error when I try to run my application on iOS device, there is an error message saying that

ARC Semantic Issue (Xcode): No visible @interface for 'FWFWebView' declares the selector 'setInspectable:' /Users/xxx/.pub-cache/hosted/pub.dev/webview_flutter_wkwebview-3.6.0/ios/Classes/FWFWebViewHostApi.m:203:44

So I try to check the error in my XCode (14.2), there is a condition checking on the iOS version as shown in the image below.

enter image description here

Is there anyone know how to solve it, thanks for the help!!

3

Answers


  1. I’m also having this issue today.

    Login or Signup to reply.
  2. check the issue page it seems related to your problem in my opinion

    https://github.com/flutter/flutter/issues/129587

    Login or Signup to reply.
  3. Try add to your pubspec.yaml

    dependency_overrides:
      webview_flutter_wkwebview: '3.5.0'
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search