ITMS-90809: Deprecated API Usage - existing app that use UIWebView are no longer accepted

前端 未结 9 2216
星月不相逢
星月不相逢 2020-12-30 23:43

ITMS-90809: Deprecated API Usage - Apple will no longer accept submissions of new apps that use UIWebView as of April 30, 2020 and app updates that use UIWebV

9条回答
  •  再見小時候
    2020-12-31 00:23

    In Terminal, run this command in your iOS project folder:

    grep -r "UIWebView" .
    

    It will show all the files that uses UIWebview. Update whatever files to use WKWebView. If your pod libraries are showing that it has UIWebView. Update the pods files as well.

    FYI it took me 6 hours to fix my project to use WKWebView since I had to update the pods files and had to fix a lot of code.

提交回复
热议问题