Questions tagged [xcode11.4]
109 questions
2
votes
5 answers
iOS Watch app fails to install - WatchKit 1.0 apps are no longer installable on this watchOS version
I have added Watch App target for existing iOS app but I have problem to install it on watch simulator. It always fails with this message
This app could not be installed at this time.
Domain: IXUserPresentableErrorDomain
Code: 1
Failure Reason:…

Martin Vandzura
- 3,047
- 1
- 31
- 63
2
votes
0 answers
Building a exsist framework for watchOS Simulator not working
I am creating an apple watch app for my ios app and I want to use my core framework in the watch extension.
I did change the build setting for the core framework to build for the watch too, like this
configuration
then linked my watch to the…

almosaiki
- 71
- 5
2
votes
1 answer
Swift 5 App - AdMob returns Timeout (XCode)
I want to show a Reward Ad (Google AdMob) in my swift app. (XCode 11.4, Swift 5, Storyboard), but whenever I load the ad it shows the following error message in the console:
Error Domain=com.google.admob Code=5
"Request Error: The Google Ad request…

Ix76
- 86
- 7
2
votes
1 answer
Warnings when generating dSYM from AgoraRTCSDK
Showing All Messages
GenerateDSYMFile /Users/matthew/Library/Developer/Xcode/DerivedData/Open-dgeabqmaqhjdskgqxyigiofipvpc/Build/Products/Release-iphoneos/Open.app.dSYM…

Matthew S.
- 239
- 2
- 7
2
votes
3 answers
How to resolve unit test crash when code coverage is enabled on Xcode 11.4
We are getting a crash after excuting all unit tests when code coverage is enabled. Please find the stack trace below
Crashed Thread: 0 ReceiverMainThread Dispatch queue: com.apple.main-thread
Exception Type: EXC_BAD_ACCESS…

Arjuna
- 697
- 4
- 17
2
votes
0 answers
Testing Remote Notifications in Simulator using XCode 11.4 says it's not supported
I've been looking into testing remote notifications using the simulator and know that starting with Xcode 11.4 beta, we should be able to do that.
The way I'm trying to test this is:
On the app launching inside didFinishLaunchingWithOptions, I'm…

user81
- 21
- 1
- 2
2
votes
1 answer
Xcode 11.4 - Introduction of Terminal
Xcode 11.4 release notes introduced that Xcode 11.4 now has new option to choose Terminal instead of Xcode's Console. However, I was unable to find the terminal option in Xcode -> Scheme Editor’s Options tab
Is it actually available just like…

Rafat touqir Rafsun
- 2,777
- 28
- 24
1
vote
1 answer
Xcode: Different behavior between swift Int and Objective-C int
I'm trying to convert Swift function to Objective-C. This is the signature of the functions
Swift:
func hammingWeight(_ n: Int) -> Int
Objective-C
-(int) hammingWeight:(int) number
I'm passing this value to…

user2924482
- 8,380
- 23
- 89
- 173
1
vote
1 answer
Problems Enumerated Deque()
I use "attaswift/Deque" library. I have a double Deque;
var pointsZ = Deque()
I want to use;
for (index,value) in pointsZ.enumerated(){
...
}
I got error "For-in loop requires EnumeratedSequence> to conform to Sequence" in…

uyarc
- 579
- 4
- 17
1
vote
0 answers
Some dates disappear and reappear on scroll in JTCalendar Swift
I am trying to setup a calendar in my app using JTCalendar library but unfortunately i have this issue when sometimes i scroll through the app, the month in view looses the dates as described in the attached picture. I have tried to find out any…

Viva
- 79
- 9
1
vote
1 answer
Xcode 11.5 Post-Update Error: Unable to activate constraint with anchors
I just updated to Xcode 11.5 and suddenly my application is throwing up this error (listed below).
My application has a TabBar as a foundation and houses different views for each of the five TabBar Items. All views work fine, except for the 3rd one,…

zaam
- 287
- 1
- 2
- 14
1
vote
1 answer
Error occuring in pod file after updating Xcode, how to fix it?
I was using Xcode 11.3, and everything was working fine. Then I updated Xcode from 11.3 to latest version 11.4.1 and then it started throwing error(see image attached) in a podfile ActiveLabel.swift . I tried updating the pod ActiveLabel by pod…

Anuranjan Bose
- 201
- 1
- 3
- 16
1
vote
1 answer
Value of type 'MKAnnotationView' has no member 'pinTintColor'?
func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {
guard annotation is MKPointAnnotation else { return nil }
let identifier = "Annotation"
var annotationView =…
user10595407
1
vote
2 answers
Updating constraints in swift 5
I have tried deactivating and reactivating... However I cannot seem to find out how to do it... I have code to use as an example but it keeps failing me, if anyone knows how to update a constraint in swift 5 please let me know... I know that the…

PandaDev
- 121
- 11
1
vote
0 answers
Xcode 11.4 archive fails when building target dependency
I have a framework project which gets build using a shell script under Build Phase. It uses xcodebuild to do that.
Since I have updated the Xcode to 11.4, I am getting the following error when the consuming project tries to build the dependency for…

Kanika
- 61
- 5