Search code examples
iosuiwebviewwkwebview

iOS - UIWebView replaced with WKWebView, but for Apple it’s still there


I’ve replaced the UIWebView with WKWebView in the ViewController in the Storyboard of my Xcode project, but Apple rejected my app saying that UIWebView is deprecated. Is there a way to check if the UIWebView is still somewhere in the code? I’m using the latest Xcode version, I also have the GoogleMobileAds framework implemented


Solution

  • Try from terminal in your base project folder

    grep -r "UIWebView" .

    (Be careful to "dot" at the end of line)

    This will print out all SDK's (including Pods) which are currently using UIWebView.