This tag should only be used for questions specific to the usage and features of Xcode 14. 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 [xcode14]
351 questions
6
votes
1 answer
Entitlements for multiplatform applications in Xcode 14
When creating a Multiplatform Application prior to Xcode 14, Xcode would create a separate Entitlements-file for each target. Now, with Xcode 14, all targets use the same Entitlements file by default.
After adding the HealthKit capability to an…

Gary
- 1,020
- 1
- 8
- 20
5
votes
1 answer
How can I tell if XCode version 14.2 is stuck on installation? Any way to see percent complete?
I'm currently installing (Upgrading to) XCode 14.2 and it has been running for a long time.
This is taking longer than my last macOS update.
I currently see the following which only shows a spinner and no update progress.
Floating over the spinner…

raddevus
- 8,142
- 7
- 66
- 87
5
votes
0 answers
How to get Xcode 14.1 to build only my currently selected scheme/target?
My Xcode project has six different targets/schemes (I've never been clear on the difference, but in any case I have six targets and six schemes), all based on the same sources in different ways. I just started using Xcode 14.1 (from a substantially…

bhaller
- 1,803
- 15
- 24
5
votes
0 answers
Setup iOS project to obfuscate with iXGuard 4.6 version
The iOS project was setup to be obfuscated with iXGuard. So, with iXGuard <4.6 version (e.g. 4.5.1) and XCode <14 version, everything works fine, the binary was obfuscated successfully - no issue.
After upgrading to XCode 14 and iXGuard 4.6…

Daniel Grig
- 91
- 5
5
votes
1 answer
After updating the Xcode 14 we facing the error with the Application circumvented Objective-C runtime dealloc initiation for object
After updating the Xcode to version 14 we faced a crash while launching the app. How can we fix this issue.
[13113:89575] *** Assertion failure in -[UIButton dealloc], UIView.m:4628
*** Terminating app due to uncaught exception…

sejn
- 2,040
- 6
- 28
- 82
5
votes
1 answer
App size has increased 2X after disabling bitcode in XCode14
XCode14 has disabled bitcode and Apple says they won't accept bitcode enabled apps. Disabling bitcode increases the size of our app by 2X. This can only help reduce the app size by a few Mb.
Has anyone faced this issue and been able to reduce their…

Keer
- 75
- 7
5
votes
4 answers
Simulators do not appear in Visual Studio with Xcode 14, can anyone assist?
I have installed Xcode 14 in macbook. However, simulators do not appear in Visual Studio.
Can anyone please help?

kajal pokale
- 69
- 1
- 7
5
votes
0 answers
Xcode 14.0 Crashes when Opening Storyboard Interface Builder
Xcode 14.0 crashes when I open my Main.storyboard. It happens randomly but especially anytime i go back to it from another code file window or other storyboard.
Any advice would be really appreciated. I have attempted cleaning build folder,…

Nick Khotenko
- 427
- 4
- 13
5
votes
0 answers
XCode 14 SwiftUI dyld symbol not found
I get this error when I run my code on an iOS 14 device using XCode 14.
dyld: Symbol not found: _$s7SwiftUI15GraphicsContextV4fill_4with5styleyAA4PathV_AC7ShadingVAA9FillStyleVtF
Referenced from: ******
Expected in:…

Deepak Sharma
- 5,577
- 7
- 55
- 131
5
votes
4 answers
Xcode14 crash on launch: dyld: Library not loaded: /usr/lib/swift/libswiftCoreGraphics.dylib
When I upgrade my Xcode to 14, my app crashed and Get an error message:
dyld: Library not loaded: /usr/lib/swift/libswiftCoreGraphics.dylib
It's only happen on devices with iOS version below 13,like iOS 12/11,

Tom Peter
- 53
- 1
- 3
5
votes
1 answer
.previewLayout(PreviewLayout.fixed(width:_,height:_)) not working in Xcode 14
Since updating to Xcode 14 the SwiftUI canvas is behaving differently.
I'm have files that are a fixed size and I am trying to preview them by adding
.previewLayout(PreviewLayout.fixed(width: width,height: height))
to the preview view.
Previously…

StartPlayer
- 485
- 4
- 21
5
votes
3 answers
iOS simulators are not available in visual studio after updating xcode to version 14
Everything was working fine till updating Xcode to version 14. But after updating Xcode to latest version 14, simulators are not available in visual studio.
Also, app is not getting installed on physical devices. Just getting a success message as…

Hardik Shah
- 161
- 1
- 10
5
votes
1 answer
Swift warning in Xcode 14 : Method confirm(intent:) conflicts with method confirm(intent:completion:) with the same Objective-C selector
Testing the new widget for iOS 16 with Xcode 14, I'm facing an issue trying to port the iOS 14 widget with the new WidgetFamily like .accessoryInline or .accessoryRectangular.
After adding conditional macros to solve some errors in order to build…

Medhi
- 2,656
- 23
- 16
4
votes
2 answers
Xcode 14 Did you forget to declare this file as an output of a script phase or custom build rule which produces it?
In Xcode 14 after adding the Widget target we are facing the below issue while Archive the build.
error: Build input file cannot be…

Ramprasath Selvam
- 3,868
- 3
- 25
- 41
4
votes
0 answers
Preview locale does not work for Xcode 14.1
According to the documentation, we should be able to set the locale on previews and the following code should work:
import SwiftUI
struct TestView: View {
var timeFormatter: DateFormatter {
let formatter = DateFormatter()
…

adauguet
- 988
- 8
- 18