Dear Developer,
We identified one or more issues with a recent delivery for your app, "xxx" . Your delivery was successful, but you may wish to correct the following issues in your next delivery:
ITMS-90809: Deprecated API Usage - App updates that use UIWebView will no longer be accepted as of December 2020. Instead, use WKWebView for improved security and reliability. Learn more (https://developer.apple.com/documentation/uikit/uiwebview).
After you’ve corrected the issues, you can upload a new binary to App Store Connect.
Best regards,
The App Store Team
解决方案:
在终端cd到项目目录,执行grep -r UIWebView .
命令,找到用到UIWebView的文件替换成WKWebView,其中用到最多的是拨打电话的方法,按照如下方案修改:https://q.cnblogs.com/q/115643/,用到UIWebView的第三方库更新。修改以后再次提交审核通过。