Questions tagged [xcode11.4]

109 questions
70
votes
10 answers

Mac command line tools 11.4 no longer has svn

I just updated XCode and the command line tools to 11.4. Now when I run svn it says "svn: error: The subversion command line tools are no longer provided by Xcode". The release notes say "Command line tool support for Subversion — including svn,…
Jesse
  • 723
  • 1
  • 5
  • 5
38
votes
6 answers

Warning: Initialization of 'UnsafeBufferPointer' results in a dangling buffer pointer

After update to Swift 5.2 / Xcode 11.4 got a warning to following code: extension Data { init(from value: T) { var value = value let pointer = UnsafeBufferPointer(start: &value, count: 1) self.init(buffer: pointer) …
Exey Panteleev
  • 1,260
  • 3
  • 13
  • 15
20
votes
7 answers

Xcode 11.4 Error - Failed to install one or more provisioning profiles on the device

Not able to install provisioning profiles from xcode. Ensured that all options for new versions(XCode 11 or later) are added from developer portal and downloading profile.
Charlie
  • 568
  • 1
  • 6
  • 13
15
votes
3 answers

How to silence Xcode 11.4 warnings about MobileCoreServices and AssetsLibrary?

After upgrading to Xcode 11.4 beta I've got those warnings from Pods subproject (specifically, from YYImage and Branch targets): Target Integrity: MobileCoreServices has been renamed. Use CoreServices instead. Target Integrity: AssetsLibrary is…
Alexander Vasenin
  • 11,437
  • 4
  • 42
  • 70
11
votes
3 answers

App crash , Xcode11.4, iOS 10.3.3 10.3.4, iPhone 5c /5 iPad4 (armv7s)

Our app crash on os 10.3.3 10.3.4, iPhone 5c /5 iPad4 (armv7s 32) compiled by Xcode 11.4, swift optimization on. We find the PC register point to a hole address without virtual address and no stack information. If we close swift optimization, it…
Victor Choy
  • 4,006
  • 28
  • 35
11
votes
1 answer

Xcode 11.4 beta crash on @Published property subscription. What's going on?

I do not know why but my code crashes on this $searchTerm publisher. I have many such publishers in my code and everything else works ok. It only does not work in this new Xcode version and works in previous version. If I commented this line and…
Michał Ziobro
  • 10,759
  • 11
  • 88
  • 143
10
votes
2 answers

Swift Combine properties inheritance throws 'Fatal error: Call of deleted method' on Xcode 11.4 beta 2 / iOS 13.4

I'm trying to using Swift Combine to get the changed event of a property. I have this class that publish the isLogged property class CurrentUser: Account { static let me = CurrentUser() //Singleton @Published var isLogged: Bool =…
Oscar TJ
  • 524
  • 3
  • 16
7
votes
1 answer

Test Rich Notifications in Simulator

I am able to test the normal notifications in Simulator, but when I tried to test rich notifications nothing happens, event title is not getting updated. Could you please assist me, how to proceed. Do I need to change any simulator settings? I am…
6
votes
1 answer

Xcode 11.4: Building for watchOS, but the linked framework 'MyFramework.framework' is building for iOS

My project compiled fine but after upgrading to Xcode 11.4 it now fails to compile with this error for each of my frameworks: Building for watchOS, but the linked framework 'MyFramework.framework' is building for iOS. You may need to configure…
Michael Ozeryansky
  • 7,204
  • 4
  • 49
  • 61
6
votes
3 answers

Unchanged barTintColor UINavigationBar on iOS 13.4

After upgrading Xcode to Version 11.4 (11E146) on iOS 13.4 barTintColor only changes through the storyboard. In the code, changes are ignored. self.navigationController.navigationBar.barTintColor = UIColor.redColor; Also a problem with the color of…
AlessandroDP
  • 1,477
  • 1
  • 10
  • 19
5
votes
1 answer

Why does setting minWidth to .infinity crash SwiftUI app with EXC_BAD_INSTRUCTION?

Here is the exact code that I am running on iOS 13.4/Xcode 11.4: import SwiftUI struct TestView: View { var body: some View { VStack() { Text("Hello") } .frame(minWidth: .infinity) } } struct…
Zorayr
  • 23,770
  • 8
  • 136
  • 129
4
votes
1 answer

Xcode Version 11.4.1 (11E503a) hangs upon Source Control > Create Git Repositories

My Xcode is keep hanging/freezes each time I'm trying to create repository for a new project. After clicking Source Control > Create Git Repositories > "Create", both buttons "Cancel" and "Create" become disable and I seems not be able to close the…
marika.daboja
  • 881
  • 13
  • 27
4
votes
1 answer

Can I use STL in a DriverKit driver?

Can I use for example std::vector in DriverKit driver in macOs / XCode? DriverKit has some container class like OSArray https://developer.apple.com/documentation/driverkit/osarray?language=objc If I create a new "DriverKit driver" project and…
tuple_cat
  • 1,165
  • 2
  • 7
  • 22
4
votes
1 answer

Unable to export test result in Xcode 11.4

I am using following code to export test code coverage using Xcode11.4. ./xccov-to-sonarqube-generic.sh /DerivedData/MyApp-*/Logs/Test/*.xcresult/ > sonarqube-generic-coverage.xml I am getting following error This version of Xcode does not support…
Mohammed Shakeer
  • 1,446
  • 16
  • 23
4
votes
1 answer

Swift: Switch between two optional values

I'm trying to implement a switch between two option values: import UIKit var numOne: Int? var numTwo: Int? func doSomething() { switch (numOne, numTwo) { case (!nil, nil): print("something") case (_ == _): …
user2924482
  • 8,380
  • 23
  • 89
  • 173
1
2 3 4 5 6 7 8