我正在从Xcode 11 Beta6上传应用程序,它显示的是无效的二进制文件。
错误是这样的:
Dear Developer,
We identified one or more issues with a recent submission for App Store review for your app, "app" 2.40 (5821). Please correct the following issues, then upload again.
ITMS-90111: Invalid Toolchain - Your app was built with a beta version of Xcode or SDK. Apps submitted to the App Store must be built with the GM version of Xcode 9 and the SDK for iOS 11, tvOS 11, watchOS 4, or macOS 10.13 or later.有人能帮我解决这个问题吗?
我试过所有这些答案,ERROR ITMS-90534: "Invalid Toolchain
更新:
根据答案和评论,我尝试用xcode 10.2运行我的应用程序,现在它显示了这样的错误(因为我有一些与iOS13相关的固定UI )。
无法打开文档"Main.storyboard“。未能解压缩名为"collectionViewCellContentView“的元素。

发布于 2019-08-28 11:43:46
在Xcode beta版本中,我现在在一次屏幕中使用了集合视图,当我在XCode 10版本中打开项目时,它在集合视图中显示了问题,"collectionViewCellContentView",我将它重命名为"view"。
Xcode 11 Beta - UICollectionview
<collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="3lR-aq-iNR">
<rect key="frame" x="0.0" y="0.0" width="50" height="50"/>
<autoresizingMask key="autoresizingMask"/>
</collectionViewCellContentView>Xcode 10.2
<view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="3lR-aq-iNR">
<rect key="frame" x="0.0" y="0.0" width="50" height="50"/>
<autoresizingMask key="autoresizingMask"/>
</view>发布于 2019-08-28 10:31:35
您应该使用非beta版本的Xcode。你可以用。Xcode 10.2
https://stackoverflow.com/questions/57690156
复制相似问题