Reputation: 570
I made a mistake by opening my project in a new beta version of xcode
Now I can not open it with a stable version because
The document “Main.storyboard” requires at least Xcode 11.0.
This version does not support iOS 13.0 system colors. Open this document with at least Xcode 11.0.
On Saturday, I planned to publish the application. and it can not be published with the beta versions.
I need to run the application on the standard version of xcode
Is there any way to fix my situation?
Upvotes: 7
Views: 4451
Reputation: 3031
In my case I had to delete this line:
<capability name="collection view cell content view" minToolsVersion="11.0"/>
And then replace all appearances of collectionViewCellContentView with view.
Upvotes: 3
Reputation: 570
The document “Main.storyboard” requires at least Xcode 11.0. This version does not support iOS 13.0 system colors. Open this document with at least Xcode 11.0.
solved
open the storyboard as source code and first delete the lines:
<capability name = "iOS 13.0 system colors" minToolsVersion = "11.0" />
and everything where there is
cocoaTouchSystemColor
And then in the Interface builder to restore the desired colors.
thnx for Russian Stack Overflow https://ru.stackoverflow.com/a/992148/322338
Upvotes: 15