RxSwift

问题:

使用RxSwift打包上传时 苹果反馈:
/*
Getting warning from Apple Store "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)."
*/

解决方案:

cd <项目根目录>
grep -rnw . -e 'UIWebView'

清理上述的相关UIWebview 相关文件或者代码.

重新打包 提交即可。

如果本文章对你有所帮助,希望你再次遇到这样的问题先去GitHub相关代码库的Issue里面搜搜相关关键字,能帮你节省更多的时间,以及找到更多更好的解决方案。

你可能感兴趣的:(RxSwift )