Questions tagged [xcode11.4]
109 questions
1
vote
1 answer
How to update Xcode if not installed from app store
I’ve installed Xcode 11.3 from a zip file not from the app store and now Xcode 11.4 is here and I need it to work with ios 13.4 so how can I update it without downloading the whole Xcode again from apple downloads?

Mostafa Ehab
- 78
- 1
- 5
1
vote
2 answers
Navigation Bar title font problem on ios 13
I’m using Xcode 11.4 and iOS 13.4.
I have set navigation bar title custom font using UINavigatinBar.appearance()
And it works correctly but on iOS 13+ when i try to push to another VC and then comeback to the parent VC, the parent VC title font…

Kawe
- 659
- 8
- 18
1
vote
1 answer
Points of Interest for iOS targets in Xcode 11.4 not working?
I’m having troubles with Points of Interest logging in Xcode 11.4 (11E146) for iOS targets. I’m assuming it’s a bug, and have filed a bug report (FB7639664), but wondering if others are having problems, too. Or is there some obscure option that is…

Rob
- 415,655
- 72
- 787
- 1,044
1
vote
3 answers
Overridden method has generic signature which is incompatible with base method's generic signature
I just updated to Xcode 11.4.
I'm receiving the following error:
Overridden method 'equals' has generic signature which is incompatible with base method's generic signature ; expected generic signature to be…

Senocico Stelian
- 1,378
- 15
- 23
1
vote
0 answers
App Store Connect Operation Error Invalid Image Path - No image found at the path referenced under key 'CFBundleIcons': 'AppIcon20x20'
I am getting this image issue for every icon. I have tried cleaning the build folder. I have tried checking to see if the icon files are under Build Phases > Copy Bundle Resources. I have tried entering the archive folder in terminal and running…

Jark
- 65
- 1
- 8
1
vote
1 answer
An error occurs in the overridden function of XCUITest
An error occurs in the overridden function of XCUITest.
I have never mentioned XCUITest.
The error is: "Method does not override method in superclass".
This happens when you change Xcode from version 11.4 beta 2 to 11.3.1 and build.
what should I…

Ika
- 1,271
- 1
- 12
- 20
0
votes
1 answer
How do I add a new swift file into the SCM? (Xcode 11.4)
I noticed that my newly created swift file in the xcode project was faded, and had the letter 'A' beside it unlike my other existing swift files that had the letter 'M' beside it. I found out that A means that it is a new file and should be added to…

Lisa S
- 17
- 7
0
votes
1 answer
iOS App Crash due to optimisation in Xcode version above 11.3 using local var variables
I am generating a build with optimization using XCode 11.6.
The optimization build settings are
Apple CLang Code Generation
Optimization Level: Fastest, Smallest [-Os]
Swift Compiler - Code Generation
Optimization Level: Optimize for speed [-O]
I…

Kirty07
- 53
- 4
0
votes
1 answer
Loading / Reading a txt file from dropbox into swift
I am trying to load a .txt file that has the following format
Person Position Data Average Goal
Person One Director 37 45 80
Person Two Assistant 23 56 34
Person Three CEO 34 45 67
There are five columns, with the first row being a header. Below is…

Jdv
- 329
- 1
- 10
0
votes
0 answers
Building for iOS Simulator, but the linked framework 'OpenTok.framework' was built for iOS with XCode 11.4
Problem - Error in iOS simulator
Building for iOS Simulator, but the linked framework 'OpenTok.framework' was built for iOS.
What percentage of your userbase does this affect (approximately)?
100%
List the steps to reproduce the problem.
just need…

Anurag Dixit
- 119
- 2
- 16
0
votes
1 answer
Error while submitting app on Apple Store
While submitting my app on an Apple store, I am getting the following error.
ERROR ITMS-90209: "Invalid Segment Alignment. The app binary at '.....app/Frameworks/libstdc++.6.0.9.dylib' does not have proper segment alignment. Try rebuilding the app…

WasimSafdar
- 1,044
- 3
- 16
- 39
0
votes
0 answers
WatchKit is not available when building for iOS Simulator
I want to run app that have watch target but when try to build on xCode 11.4 This error is raised
"WatchKit is not available when building for iOS Simulator."

zeina reda
- 11
- 2
0
votes
1 answer
Swift: Enum Int, Codable for a range of cases
I'm trying to implement a enum for range of numbers. For example:
enum DoSomething: Int, Codable {
case one = 1
case two = 2
case three = 3
case other = 4..100
}
But on this case I get this error:
Raw value for enum case must be a…

user2924482
- 8,380
- 23
- 89
- 173
0
votes
1 answer
iOS app crash at launch iOS 10 using XCode 11.3.1
I am getting an error when launching the app. I am building the app using XCode 11.3.1 and running app on iOS 10.3.1
App crash it does not even call didfinishlaunch
This is what I see in crash report
Termination Description: DYLD, Library not…

Mohammad Parvez
- 409
- 4
- 12
0
votes
2 answers
Objective-C Blocks: Incompatible block pointer types
I'm trying to implement a block call. Here is my method:
- (void) runTest; {
void (^MyBlock)(id, NSUInteger, BOOL) = ^(id obj, NSUInteger idx, BOOL stop) {
NSLog(@"Video game %@", (NSString *)obj);
};
BOOL stop;
…

user2924482
- 8,380
- 23
- 89
- 173