Questions tagged [xcode11.3]

This tag should only be used for questions specific to the usage and features of Xcode 11.3. 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.

109 questions
77
votes
8 answers

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

I used to use autolayout add new constraints to make simple constraints to superview / relative view like this (for loooong time): However, recently after updated to the latest xcode (11.3.3 or just 11.3/11C29), I have this weird issue: when I set…
Eddie
  • 1,903
  • 2
  • 21
  • 46
9
votes
5 answers

'Firebase/Firebase.h' file not found

I have ,"pod install ", and my pod file look like this : # Uncomment the next line to define a global platform for your project #platform :ios, '9.0' target 'MyTaxii' do # Comment the next line if you don't want to use dynamic frameworks …
Roxana Slj
  • 311
  • 1
  • 5
  • 23
9
votes
1 answer

Lost connection to the debugger on "iPhone" Launching App Xcode 11.3.1

I've been experiencing this issue a lot with Xcode 11.3.1 when launching the App on the simulator, sometimes just restarting Xcode works, sometimes I have to restart my computer in order to make the app run again. It never happened on Xcode 11.1…
danywarner
  • 928
  • 2
  • 15
  • 28
7
votes
0 answers

How to pass Xcode environment variable from Target to its dependencies

My project has 2 App Targets (App-A and App-B, 2 different iOS apps) and a few different dependency targets (static libraries) which are being used by both app targets. One of the dependencies is our inhouse static framework that communicates with…
dev
  • 2,180
  • 2
  • 30
  • 46
6
votes
1 answer

Use .smallCaps() in SwiftUI

Im trying to change my text to small caps in SwiftUI. But I don't understand how to apply the Method to my text. https://developer.apple.com/documentation/swiftui/font/3084273-smallcaps I've tried different ways, here are two of…
Daniel
  • 568
  • 3
  • 15
6
votes
0 answers

Warning in Project of XCFramework: Module 'ModuleName' was not compiled with library evolution support

I'm trying to create XCFramework, which has inside several dependencies imported with SPM. I set BUILD_LIBRARIES_FOR_DISRTIBUTION to YES for target. But this warning inside of XCFramework Project next each line import makes me curious:…
birdy
  • 943
  • 13
  • 25
5
votes
7 answers

Command PhaseScriptExecution failed with a nonzero exit code Xcode 11.3.1

I am getting Command PhaseScriptExecution failed with a nonzero exit code error frequently, The below workarounds which I followed but didn't help me. Workaround1: Keychain Access -> Right-click on login -> Lock & unlock again -> Clean Xcode project…
OhStack
  • 106
  • 1
  • 1
  • 15
5
votes
2 answers

Xcode 11.3 cannot set target for iOS 13.3, i.e. the option doesn't exist

I upgraded to Xcode 11.3 and Catalina 10.15.2 recently. The release note stated Xcode 11.3 includes SDKs for iOS 13.3 However, the iOS 13.3 deployment target, as well as the simulator, doesn't exist. Edit: The iOS 13.3 deployment target doesn't…
zrfrank
  • 2,631
  • 1
  • 12
  • 18
4
votes
0 answers

Xcode Debugger Swift: Not able to view value of variables in debugger and lldb command gives error

I am facing issues with Xcode - Version 11.3.1. When I try to debug the code getting below error when code stops on the debugger point.…
Dhaval Kansara
  • 3,478
  • 5
  • 22
  • 50
4
votes
2 answers

SwiftUI List only using first item of given array

I have a simple view below to display all of the contacts for the user: struct AllContactsView: View { static let withState: some View = AllContactsView().environmentObject(AllContactsProvider()) @EnvironmentObject var contactsProvider:…
Voltron
  • 431
  • 7
  • 19
4
votes
1 answer

'Error: no member named 'signbit' in the global namespace' while trying to run opensmile-2.3.0 on Mac OS Catlina?

I'm trying install Opensmile-2.3.0 on Mac but I get few cmath errors. I have updated Xcode to 11.3 and it didn't help. Mac OS - Catlina 10.15.3 I began by downloading the file as .tar file and unzipped it using tar -zxvf opensmile-2.3.0.tar Then…
4
votes
2 answers

Exception breakpoint not working in Xcode11.3

I am using a for-loop to iterate an array. When the index is out of bounds, the exception breakpoint is not stopping at the point of error. My code class ViewController: UIViewController { let integers = [1, 2, 3] override func…
Nilanshu Jaiswal
  • 1,583
  • 3
  • 23
  • 34
3
votes
1 answer

iOS13 app generated from Xcode 11.3 is crashing while launching if I download and install from testflight.In simulator app is working fine

The iOS app is working fine when we download and install from testflight if I generate that app from Xcode 9.1 and MacOS 10.13.6(High Sierra)and uploaded to testflight.I have opened the same code from Xcode 11.3 on latest MacOS Catalina and…
Devi
  • 31
  • 4
3
votes
2 answers

snapkit login kit not working Swift Xcode 11.3.1

I am using Xcode 11.3.1 and try to login with snapchat with loginkit I add the add information in info.plist and my code is SCSDKLoginClient.login(from: self, completion: { success, error in if let error = error { …
balkaran singh
  • 2,754
  • 1
  • 17
  • 32
3
votes
1 answer

Xcode: Interface Builder using wrong destination to render IBDesignable

Environment macOS: 10.15.3 Xcode: 11.3.1 Swift: 5.1 Application Target: macOS Background I have an IBDesignable control based on NSView (or UIView depending on the desired target). I have packaged it using Package Manager as follows: //…
Mike Manzo
  • 150
  • 1
  • 7
1
2 3 4 5 6 7 8