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
1
vote
0 answers

SwiftUI view sometimes creates Thread 1: EXC_BAD_ACCESS (code=1, address=0x6002005b8368), when I put array as a parameter

SwiftUI View file struct NoteListView: View { @EnvironmentObject var presenter: NoteListPresenter var body: some View { NavigationView{ AddNoteButton() Text(presenter.noteViewModels[0].title) } …
1
vote
1 answer

Dynamic data passing and presenting views of Grid Images in SwiftUIExtensions

I am using SwiftUIExtensions library and wanted to make the image in the “StaggeredGridView” clickable presenting a new view with the clicked image and some related information with it. Presently I am working as below code, but still not sure how to…
NS1518
  • 838
  • 1
  • 8
  • 23
1
vote
2 answers

Xcode 11.3 not opening projects

Xcode is refusing to open any projects, every time a project is opened the spinning wheel starts and Xcode freezes and has to be force quit. On a rare occasion the project might open after a minute or two. I have undertaken many things to rectify…
RichAppz
  • 1,520
  • 2
  • 14
  • 27
0
votes
1 answer

Xcode Simulator Test Parallelization Numbers

When I view my Xcode Preferences, I see Auto, 1, 2, 3, and Max for Simulator Test Preferences: However, when my coworker views his settings, he sees Auto, 2, 4, 6, and Max: We are both using XCode 11.3.1 version. What controls this number of…
reutsey
  • 1,743
  • 1
  • 17
  • 36
0
votes
1 answer

Can't initialize crashlytics in iOS

Followed all instructions showed in this video: https://www.youtube.com/watch?v=qFQLG1Hlzis As well as all instructions that are shown here: https://firebase.google.com/docs/crashlytics/get-started My firebase connection is good, I'm able to see…
jbeltran
  • 11
  • 1
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

Adding/Reducing day in the Date object returns wrong date when day light savings time ends

I'm using Calendar.current.date(byAdding: .day, value: -1, to: somedate) ?? somedate to reduce 1 day from some date. Since Daylight Saving Time Ended on 1'st Nov, 2020. When i'm trying to do this on 2nd Nov, 2020 0hr:0m:0s's date object, i expect…
aman
  • 30
  • 5
0
votes
1 answer

How do I set locale on Mac OS X platforms?

I'm using Azure-DevOps Server pipeline to compile an IOS application with an IOS agent (macOS Big Sur) while using Xcpretty for tests and code coverage reports. The Xcpretty not…
Yd74
  • 11
  • 1
  • 2
0
votes
0 answers

Xcode build fails

Getting "Embedded binary is not signed with the same certificate as the parent app. Verify the embedded binary target's code sign settings match the parent app's." after I add NotificationServiceExtension as a target to my project. Solutions I have…
Sandesh
  • 63
  • 1
  • 10
0
votes
0 answers

Scroll bars not displaying for NSView placed inside a NSScrollView in MacOS application using XCode

I am running with an issue where the Label text which is placed inside NSView is getting cut off at bottom and right side of content view & even scroll bars are not getting displayed. I am using Xcode 11.3 in macOS Mojave 10.14. I have dragged…
Kamal
  • 453
  • 1
  • 10
  • 22
0
votes
2 answers

How to add a precompiled header in xcode 11

I wanted to define few custom values in a pre-compiled header for different targets of my app. I tried the following to define headers, but none worked: by adding a header from Editor -> Add Build Setting -> Add User Defined setting and assign key…
Deepak Thakur
  • 3,453
  • 2
  • 37
  • 65
0
votes
1 answer

Programmatically can we store csv file in in different iCloud accounts or apple accounts?

I am working on an app that is a concept of storing .csv files in iCloud from different iPhone devices. The files are store function works fine if I have a login on the device with the same iCloud account which I have created the certificates. My…
Tapas_ios
  • 73
  • 6
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
1 answer

Invalid update of a UIDatePicker inside tableView crashing in iOS 13 on rotation

I am adding a UIDatePicker as a table's footer. I have another extension of UITableView which implements traitCollectionDidChange and only does beginUpdates and endUpdates. I am getting the below crash on changing the orientation. *** Assertion…
Faizyy
  • 353
  • 2
  • 15
0
votes
2 answers

How to test layout in 3.5 screen size specifically iPhone 4s in Xcode 11.3.1?

I really need to test the layout of my app in 3.5 screen size specifically iPhone 4s using Xcode 11.3.1 but unfortunately iPhone 4s is not available. I have Xcode 11.3.1 with Mac OS Catalina which I believe that adding 9.0 simulator is impossible…
user12758279
  • 65
  • 2
  • 8