Questions tagged [xcode11.4]
109 questions
0
votes
1 answer
Change the title color of a navigation item in Xcode 11.4
I cannot change the title color of a navigation item. It is an old project with support for iOS 10.0+.
Setting the title:
navigationItem.title = "My Title"
Someone changed the property titleColor (in Title Text Attributes) of a navigation bar in a…

Vladislav Markov
- 587
- 1
- 5
- 19
0
votes
2 answers
In Xcode my Mac app launches curl, but -o can't write to disk
In terminal this works:
/usr/bin/curl --connect-timeout 10 --max-time 60 https://en.wikipedia.org/wiki/The_Beatles -o /Users/username/Desktop/wikiData
% Total % Received % Xferd Average Speed Time Time Time Current
…

vonlost
- 875
- 1
- 7
- 11
0
votes
0 answers
Custom view not working Testfligt on Xcode 11.4
I create and display a custom view with the code snippet below. It was running smoothly before Xcode 11.4. Although it works while debugging at Xcode 11.4, the view does not occur when I upload it to testfligt.
Has anyone experienced such a…

ulaserdegor
- 371
- 5
- 10
0
votes
1 answer
UINavigationController NavigationBar background image not working after updating XCode to 11.4 on Visual Studio Xamarin.iOS
I was using this code before, now this is not working. I am using gradient image to add on navigationbar background. This was working before xcode 11.4 update but after updating this has stoped working. Moreover title is also shown in black color. I…

Zeeshan Shakil
- 157
- 2
- 13
0
votes
1 answer
Swift: Cannot convert value of type '()' to specified type on init
I have Struct init and I'm trying to filter the an array in init:
public struct doSomething: Codable {
public var listOfStuff: [String]
init(someStuff: [String]) {
var clone = someStuff
let stuff: [String] = clone.removeAll…

user2924482
- 8,380
- 23
- 89
- 173
0
votes
0 answers
Xcode 11.4 compile error 'unknown option: -platform_version'
After I updated my MBP to 10.15.4 and Xcode 11.4.1 , the build error disappear.
Still no idea.
My project runs well in Xcode 11.3.1. When I update Xcode to 11.4, I got this error when build.
I deleted derived data and rebuild, the error still…

Fantasy
- 251
- 1
- 2
- 6
0
votes
1 answer
How to add a element to a new UIViewController on swift?
i have been trying to insert a element into my new view controller when this happened:
For those of you who had the image not load, it said Could not insert new action connection: Could not find any information for the class named…

QiwiCode
- 15
- 1
- 6
0
votes
1 answer
SwiftUI toggle() function on Published values stopped triggering didSet with Swift 5.2
I have just updated my Xcode to 11.4 from 11.3 and my project written in SwiftUI started to behave differently. I used to call toggle() function for boolean values and it used to trigger didSet property observer, however, it is not working any…

Cuneyt
- 931
- 5
- 11
0
votes
1 answer
Standard c++ header not found in Xcode 11.4
I got error for below code in Xcode 11.4
#include
Please see attach image
I already copied c++ from Xcode 9.4 to Xcode 11.4 as described in below image
Still getting error. Please help me.

iPhoneProcessor
- 4,980
- 6
- 27
- 49
0
votes
1 answer
Xcode 11.4 not allowing to use instance variable
i have Just In time property, which was working fine but now xcode 11.4 started complaining about it. please look at following code
- (UITextField *)searchTextField
{
if (!_searchTextField)
{
_searchTextField = [self…

Shaik Riyaz
- 11,204
- 7
- 53
- 70
0
votes
0 answers
Multiple GeometryReader Causes problem with other GeometryReader SwiftUI
I'm using two Stack and I have a UIViewRepresentable that I want to put it inside the first stack but for the width and height I'm using the GeometryReader to get the width and height so that the UIViewRepresentable will be inside the first…

arata
- 859
- 1
- 8
- 23
0
votes
1 answer
Custom Siri Intent Generation broken in Xcode Version 11.4 (11E146)
I updated Xcode yesterday only to discover that my custom siri intents no longer seem to generate. I started seeing others with this issue on the Apple dev forum this morning https://forums.developer.apple.com/thread/130691 and thought I would ask…

johnrechd
- 1,801
- 19
- 25
0
votes
1 answer
Snapshotting a `UIView` crashes the app with `NSInvalidArgumentException` "[_UIReplicantView _isSymbolImage]: unrecognized selector sent to instance"
Hi guys i have just updated XCode to version 11.4 from the app store and when i try to snapshot a UIView on iOS 13.4 like this:
extension UIView {
func snapshot(at scale: CGFloat) -> UIImage? {
let renderer =…

Stoyan
- 1,265
- 11
- 20
0
votes
1 answer
Apple Swift-Format tool for Xcode 11.4
Uses https://github.com/apple/swift-format after update Xcode to version 11.4 start getting error:
"Unable to lint xxxx.swift: SwiftSyntax parser library isn't compatible."
How do we solve that issue? Changing SwiftSyntax version does not help.

Evgeny Zrorin
- 351
- 1
- 12
0
votes
1 answer
SwiftUI - Layouts gone wild after latest Xcode update
After I updated the Xcode to 11.4 (11E146), all of my views has expanded vertically and does not fit the screen. It was all working fine before the update. The problem is happening in the Preview and Simulator. It is same whether the view has…

Faruk
- 2,269
- 31
- 42