-3

Deprecated API Usage - Apple will stop accepting submissions of new apps that use UIWebView - From App Store Team.

I'm not getting any results searching for UIWebView in my iOS app in Xcode, but still i'm getting warning "Deprecated API Usage".

How to fix this issues.

Kishore R
  • 7
  • 3

1 Answers1

2

you can use grep command to find the usage of webview in your project in any of your frameworks used

grep -r UIWebView  <project folder path>

on your project folder

ManuRaphy
  • 361
  • 1
  • 13