问题:
使用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 相关文件或者代码.
重新打包 提交即可。
网友评论