This tag should only be used for questions specific to the usage and features of Xcode 13. Do not use this tag just because you are using Xcode to develop your app. General Xcode questions should use the non-version specific [xcode] tag. Use tags appropriate for the OS such as [ios] or [macos].
Questions tagged [xcode13]
459 questions
6
votes
4 answers
Do you know where’s the Vary for Traits in Xcode 13?
I can't find Vary for Traits in Xcode 13.
Thanks in advance for any help!

Michel Odreman
- 61
- 1
- 3
6
votes
2 answers
Xcode 13.0 stuck while installing on macOS BigSur 11.6
I'm experiencing a weird behaviour when updating Xcode from AppStore.
Screenshot:
Xcode 13.0 stuck while installing
I've tried:
Deleting Xcode then reinstall.
Free up storage space on Mac.
Connect to another WIFI.
Disabled VPN.
but no luck

Hamad Fuad
- 266
- 3
- 12
6
votes
0 answers
Can't add Swift Package using File > Add Packages ... in Xcode 13 beta
I created a new iOS project and now I'm trying to add Alamofire as a dependency using Xcode (which uses Swift Package Manager under the hood, I suppose). However, it just doesn't work. When I enter https://github.com/Alamofire/Alamofire.git in the…

LuMa
- 1,673
- 3
- 19
- 41
6
votes
7 answers
Crash on dyld: Library not loaded: /usr/lib/swift/libswift_Concurrency.dylib running on simulator
I'm implementing a very basic task (download few files from a remote server) on an existing app, to exercise the new Swift Concurrency APIs. The task is done flawlessly on iOS 15: I use a TaskGroup and I receive the images as expected.
As this app…

Carla Camargo
- 574
- 5
- 14
6
votes
1 answer
perform(_:inZoneWith:completionHandler:) deprecated? or not? iOS 15
In Xcode 13 beta for iOS 15, I am receiving a message that perform(_:inZoneWith:completionHandler:) (CloudKit) is deprecated in iOS 15 and renamed to fetchRecords(matching:inZoneWith:desiredKeys:resultsLimit:completionHandler:) However...
The Apple…

JerseyDevel
- 1,334
- 1
- 15
- 34
5
votes
0 answers
:1:1: circular reference XCode 13
When compiling project in XCode 13.2 getting error, in all previous XCode version code working fine. Xcode 13 and above versions throwing errors and not getting any specific file or podname which is cause to…

steveSarsawa
- 1,559
- 2
- 14
- 31
5
votes
1 answer
How to add a Swift package manager as a dynamic library in xcode 13?
I am currently working in switching dependency manager of a project from Carthage to Swift Package Manager,
We have for example realm dependency that used to be a dynamic framework when building with Carthage,
But in SPM when I try to add realm it…

Lucas
- 746
- 8
- 23
5
votes
1 answer
Where to "set DISABLE_MANUAL_TARGET_ORDER_BUILD_WARNING"
We have a complex Xcode workspace with loads of dependencies and dependencies of dependencies. The order of building them matters and Xcode <13 never was able to figure out the correct order using the "Parallelize Build" setting of the Xcode…

shallowThought
- 19,212
- 9
- 65
- 112
5
votes
0 answers
App crashes, but only on iOS 14, and only if installed via MDM
We're experiencing an extremely bizarre crash in our iOS/iPadOS app.
Some major changes in our latest release:
Built with Xcode 13.0 on Big Sur 11.6
Dropped support for iOS 13
Updated Firebase to 8.9.1
Built using the latest fastlane version
OK…

scaly
- 509
- 8
- 18
5
votes
0 answers
This SDK is not supported by the compiler. Please select a toolchain which matches the SDK
I have created one iOS framework. The framework was build by XCode version 12.5.1.
When I am using this framework with XCode 13.0, I am getting below error.
This SDK is not supported by the compiler (the SDK is built with 'Apple Swift version 5.4.2…

iDev
- 531
- 1
- 5
- 15
5
votes
2 answers
Opening Xcode 13.0 project in Xcode 12.5
When I try to open a Xcode project I'm getting an error message saying :
The project at '/Users/.../[].xcodeproj' cannot be opened because it
is in a future Xcode project file format. Adjust the project format
using a compatible version of Xcode to…

unknown
- 788
- 9
- 24
5
votes
0 answers
Setting of different text colors for different UITabBarItem's in iOS 15
After update to iOS 15, I implemented UITabBar configuration this way:
let backgroundColor = UIColor.grey
let selectedItemTextColor = UIColor.blue
let unselectedItemTextColor = UIColor.black
if #available(iOS 15, *) {
…

Dmytro Yashchenko
- 750
- 4
- 12
5
votes
2 answers
iOS15 Xcode 13 Global Accent Color not working
I'm using the latest beta of Xcode 13 with an app for iOS 14 and now I'm facing this strange issue:
The global accent color of my app was working fine until the iOS 15 update when the color is now set as the default blue where before it was my…

Luca
- 914
- 9
- 18
5
votes
3 answers
No visible @interface for UITabBar setScrollEdgeAppearance
today i met with issue on Xcode 12. When i tried iOS 15 version of app i noticed that tabbar background changed. I solved this by adding this line of code
if (@available(iOS 15.0, *)) {
[[UITabBar appearance]…

Roman Varga
- 101
- 1
- 4
5
votes
1 answer
I can't add systemExtraLarge family in WidgetConfiguration for iOS 15
I want to add an extra large widget as supported family for iOS 15 in my application.
The simplified code for WidgetConfiguration is as follows:
var body: some WidgetConfiguration {
IntentConfiguration(
kind: "Widget",
…

Tomeu Mascó
- 319
- 2
- 11