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).

According to Apple’s regulations, UIWebView is not allowed in the project by the end of 2020. Files that normally contain UIWebView are easy to check, but some static files in SDK contain UIWebView, which is extremely inconvenient to check. You can use the terminal to retrieve the screening

CD Project DirectoryCopy the code
grep -r UIWebView .
Copy the code

The end result will be a list of all the files that have UIWebView, including references to UIWebView in the.a file

mac@macdeiMac Now_CN_iOS % grep -r UIWebView . Binary file ./Pods/BaiduMobStatCodeless/BaiduMobStatCodeless/libBaiduMobStat.a matches ./Pods/MJRefresh/README.md: * [UIWebView01-The drop-down refresh](#UIWebView01-The_drop-down_refresh) ./Pods/MJRefresh/README.md:* ` UIScrollView `, ` UITableView `, ` UICollectionView `, ` UIWebView `. / the Pods/MJRefresh/README. Md: # # < a id="UIWebView01-The_drop-down_refresh"></a>UIWebView01-The drop-down refresh grep: . / the Pods/tingyunApp/NBS - newlens - ios - 2.14.4 / tingyunApp framework/Resources: No such file or directory Binary file ./Now/Other/Tool/ThreePart/WX/libWeChatSDK.a matches Binary file ./Now/Other/Tool/ThreePart/WeiBo/libWeiboSDK.a matches Binary file ./Now/Other/Tool/ThreePart/QQ/TencentOpenAPI.framework/TencentOpenAPI matches Binary file ./Now/Other/Tool/AliPayManager/AlipaySDK.framework/AlipaySDK matchesCopy the code