【问题记录】【Unity打包iOS】New apps that use UIWebView are no longer accepted

报错:

We identified one or more issues with a recent delivery for your app, "xxx" 1.0.0 (0). 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).

原因:

UIWebView控件已经弃用,需要替换为WKWebView控件。

用Unity导出XCode工程打包,导出时会自动把Unity的组件对应到iOS控件,要解决这个问题只能Unity来更新底层逻辑。

解决:

可以替换更高的Unity版本,高版本已经解决了这个问题。

报错版本:Unity 2018.3.14,更新到目前最新版本2019.3.15,再导出工程打包不报错。

你可能感兴趣的:(问题记录)