检查项目中是否包含UIWebView

最近公司要创建一个新的APP ,提交APP Store审核,提交审核的时候苹果提示如下

Dear Developer,

We identified one or more issues with a recent delivery for your app, "xxxx Please correct the following issues, then upload again.

ITMS-90809: Deprecated API Usage - New apps that use UIWebView are no longer accepted. Instead, use WKWebView for improved security and reliability. Learn more (https://developer.apple.com/documentation/uikit/uiwebview).

Best regards,

The App Store Team

苹果审核新APP不在支持UIWebView

自己代码里写的和容易我们只需要全局搜索UIWebView 就可以了,但是三方.a库,有没有用UIWebView我们搜索不到,打开终端cd 到xxx.xcworkspace目录执行grep -r UIWebView . 注意后面有个点,就能查找到所有的用到UIWebView

你可能感兴趣的:(检查项目中是否包含UIWebView)