Can’t update Xcode 11 [closed]

Manual download The always working and preferred workaround! Download directly from Apple: Latest Release version or Latest Beta version or Any version you need and all other downloadable contents Then extract and move it where you like. This has so many benefits comparing to AppStore updates. (like the ability to resume download, not replacing the … Read more

Can’t submit apps to AppStore: ERROR ITMS-90534: “Invalid Toolchain

If you’re looking at this in November 2019, there’s an obscure error in Xcode 11.2, which prevents uploading from that version to the App Store. You’ll have to upgrade to Xcode 11.2.1, which is currently not available on the Mac App Store yet, but must be downloaded from the Developer Portal here: https://developer.apple.com/download/ The Xcode … Read more

SwiftUI: unwanted split view on iPad

Update July 2022 Using NavigationStack instead of NavigationView should display as the main view as you would expect on iPad: NavigationStack { Text(“Hello world!”) } *In newer versions, the navigationViewStyle modifier has been deprecated. Original answer: You can apply the .navigationViewStyle(.stack) modifier to the NavigationView. … NavigationView { Text(“Hello world!”) } .navigationViewStyle(.stack) … Edit: Below, … Read more

Xcode 11 add new constraints set zero: use set value instead of default / standard

Seems like a bug (don’t forget to file with Apple). Here’s a simple workaround: When you fill in the number in the “popover”, instead of typing 0, type 0.01. This will prevent the number from changing mysteriously to “Standard”. Okay, so 0.01 is not the same as 0 but it’s close enough that you can’t … Read more