Questions tagged [xcode11]

This tag should only be used for questions specific to the usage and features of Xcode 11. 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.

Xcode 11 is year 2019 version of Apple's IDE. Made available in beta at the start of WWDC 2019 on June 3, 2019. This provides support for iOS 13, macOS 10.15, watchOS 6, and tvOS 13.

Xcode 11 supports on-device debugging for iOS 8 and later, tvOS 9 and later, and watchOS 2 and later. Xcode 11 requires a Mac running macOS 10.14.3 or later.

1314 questions
-1
votes
1 answer

Xcode 11 "'==' is only available in iOS 13.0 or newer" error

I tried to build my project in Xcode 11 and it throws 26 identical errors :0: error: '==' is only available in iOS 13.0 or newer The errors happen on Compile Swift source files stage upon calling CompileSwift normal arm64…
Alexander Vasenin
  • 11,437
  • 4
  • 42
  • 70
-1
votes
1 answer

Navigation bar not showing when large title used Xcode 11.1

I recently updated to Xcode 11.1 and the update came along with a lot of random changes to the story board. I have fixed all but one. The navigation bar is completely transparent when the large title is used. As soon as I scroll down on the other…
-1
votes
1 answer

Terminating app due to uncaught exception 'NSInternalInconsistencyException' reason: 'PushKit'

Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'PushKit apps that use VoIP push must link either CallKit or IncomingCallNotifications frameworks.' *** First throw call stack: ( 0 CoreFoundation …
Varun
  • 9
  • 3
-1
votes
1 answer

UI tests failing in Xcode 11, but used to pass in Xcode 10

I recently upgraded to Xcode 11, and my UI tests that used to pass in Xcode 10, are now failing, no code changes were made, and now its failing to find an element on the screen that it used to find I tried setting the isAccessibilityElement to true…
Ndamu
  • 19
  • 3
-1
votes
1 answer

Xcode 11 'Create NSManagedObject Subclass' missing in menu

I cannot get Xcode 11 to update CoreData sublasses. There used to be a menu item 'Editor' > 'Create NSManagedObject Subclass' which does not exist anymore. Now when I make changes in the core data schema file, existing files like…
de.
  • 7,068
  • 3
  • 40
  • 69
-1
votes
3 answers

When do we need to upgrade to new version Xcode (.i.e Xcode 11)?

When do we need to upgrade XCode to newer version? Is it ok if we use older version (.i.e build IPA for iOS 13.1 with XCode 10 or even XCode 9) (to debug with newer iPhone, iPad is one reason :D)
o0omycomputero0o
  • 3,316
  • 4
  • 31
  • 45
-1
votes
1 answer

Animations are not working in Xcode 11 versions in devices

Recently, I have updated my xcode to xcode11 version everything is fine but animations are not working enter the app. what should be the reason for this, What should i do now?
suresh
  • 55
  • 3
-1
votes
3 answers

UNUserNotificationCenter/ UserNotification not found in Xcode 11 iOS13 -

I am trying to setup Notifcations on Xcode 11 in iOS13 but i tried adding the linked frameworks(in pic) but still doesn't recognize the module. Any suggestions? import UIKit import Firebase import UNUserNotificationCenter @UIApplicationMain class…
Di Nerd Apps
  • 770
  • 8
  • 15
-1
votes
1 answer

After upgrading to Xcode 11, apps doesn't show some UILabels

After upgrading to Xcode 11, some of my apps stopped showing texts. I can see images, buttons, etc but almost no texts. Any ideas?
Leandro Fournier
  • 927
  • 1
  • 9
  • 21
-1
votes
1 answer

How to avoid or prevent dark mode in app?

iPhone device theme is Dark. So my app theme getting some changes because of this. Can i prevent this dark mode in my app? if yes How?
Mohit Tomar
  • 5,173
  • 2
  • 33
  • 40
-1
votes
1 answer

iOS 13.1 Objective-C ModalPresentation Fullscreen

found next strange bug in iOS 13 presenting modally over fullscreen viewcontroller. Initially it was broken, it was opened in not a full screen so I tried next method described on this link Now it loads and awaits touch to anywhere on the screen.…
swift2geek
  • 1,697
  • 1
  • 20
  • 27
-1
votes
1 answer

iPad won't rotate in iOS 13

I have encountered problem when presenting view controller and changing its orientation to landscape at the same time. It's just working fine with devices in iOS 12 and below. It's also working fine with iPhones in iOS 13. override func…
ylj_
  • 11
-1
votes
1 answer

Modal Presentation Issue

I am trying to get ContentView() from the following code from course view. .sheet(isPresented: self.$showContent) {ContentView()} Here is full code: // // HomeList.swift // Design Code // // Created by Govind Pathak on 09/09/19. // Copyright ©…
-1
votes
1 answer

Xcode 11 presenting view controller visible through modally presented navigation controller

I have several views that are presented modally. Using iOS 13 & Xcode 11 (b7), for the ones where I have a view controller embedded in a navigation controller, the presenting view controller is visible between the navigation bar & the view…
Jordan
  • 4,133
  • 1
  • 27
  • 43
-1
votes
3 answers

iOS 13 UITabBar RePosition to Top

I have followed this answer to reposition my tabbar to top of the page. It was working perfect until iOS 13 release. In iOS 13 the tabbar is visible on bottom of the screen. Any other workaround should i have to use? Does anyone faced the same…
Praveenkumar
  • 24,084
  • 23
  • 95
  • 173