Questions tagged [ios13]

The iOS13 tag should be used for questions specific to Apple's iOS 13 operating system. General iOS questions should use the iOS tag.

API and Developer Changes

  • Allows users to adopt a dark system-wide appearance called Dark Mode, a darker color palette for all screens, views, menus, and controls.
  • With ARKit 3.0, users are able to create and render 3D scenes using , , and frameworks.

  • iOS 13 makes even more powerful with new conversational shortcuts, deeper customization, and new media playback experiences.

  • On-device machine learning using 3. Core ML 3 supports more advanced machine learning models than ever before.
  • With Create ML (), you can now build machine learning models right on your Mac with zero code.
  • features additional technologies that take advantage of the unique functionality of iPad using the iOS SDK.
  • With a declarative Swift syntax that’s easy to read and natural to write, works seamlessly with new Xcode design tools to keep your code and design perfectly in sync. It enables automatic support for Dynamic Type, Dark Mode, localization, and accessibility.
2125 questions
15
votes
6 answers

Not getting APNS Device token on ios 13

I have issue related to APNS device token . Before I was using Xcode 10.2 and iOS 12.1. At this moment I used to get the device token in delegate method -(void)application:(UIApplication *)application…
IOS Dev
  • 151
  • 1
  • 1
  • 4
15
votes
2 answers

iOS 13.1 UITextView delegate method shouldInteract called when scrolling on attachment

I'm using the UITextView delegate method to do some custom work like opening a in-app browser when user tapping on URL or attachment: func textView(_ textView: UITextView, shouldInteractWith URL: URL, in…
kukushi
  • 647
  • 9
  • 22
15
votes
2 answers

What is the right way to set back button arrow tint in ios 13

In ios 13, Apple introduced the new UINavigationBarAppearance proxy object to set the navigation bar appearance. I've been able to set almost everything I needed except one small thing. The back button's arrow is always rendered with blue tint color…
Roman
  • 949
  • 7
  • 16
15
votes
3 answers

SwiftUI List disable cell press

I am using xCode 11 beta 7 with SwiftUI. I have a simple list which each list element has several buttons. Currently when the user presses the cell(not the buttons) it is highlighting the back of the list cell(probably not the correct terminology…
Reedy
  • 1,866
  • 2
  • 20
  • 23
15
votes
13 answers

Change status bar background color in iOS13

With iOS13 I cannot change the background color of the statusbar anymore because the statusbar is no longer accessible using "value for key". Did anybody figure out how this is possible or is there any knowledge that it will be possible in the final…
Nij
  • 163
  • 1
  • 1
  • 5
15
votes
4 answers

Push notification not register to the app on iOS 13

I build my app and I put a breakpoint in didRegisterForRemoteNotificationsWithDeviceToken but it's not triggered. It works fine on other versions of iOS. Is this a bug in iOS 13 or did I miss something new in iOS 13? I use Xcode Beta 6 and iOS 13…
15
votes
3 answers

How can I check ios device's current userInterfaceStyle programmatically?

I am able to get userInterfaceStyle using TraitCollection of any view or ViewController ie. Dark or Light. But when I forced app to use Dark or light Mode, then I want to know what is the current userInterfaceStyle of iOS device irrespective of…
Raushan Kumar
  • 171
  • 1
  • 2
  • 6
14
votes
2 answers

How to use @Fetchrequest outside a View

I am trying to move my @fetchrequest property to an auxiliar class, which is not a View, but every time I try to do that, I get a bad instruction error. Can anyone help me? This is a sample of my code: ViewModel: class ViewModel { …
Laura Corssac
  • 1,217
  • 1
  • 13
  • 23
14
votes
5 answers

iOS TabBar item title issue in iOS13

I am having issue in tabBar title for iOS13 on compiling from Xcode 11.It works perfect whle compiling from Xcode 10.Please find the screenshot for the issue and below is the code for customising the tabBar. The code is self.tabBar.isTranslucent =…
Sanjeev Pant
  • 141
  • 1
  • 3
14
votes
2 answers

Returning false in shouldChangeTextInRange method auto capitalize all letters

I am seeing a strange issue with UITextView in latest iOS versions. As per my current understanding, it is only occurring in iOS 13.  One of my users reported this on iOS 12.4.1, though I am unable to reproduce this on any pre iOS 13 devices. I have…
Krishnabhadra
  • 34,169
  • 30
  • 118
  • 167
14
votes
1 answer

Change modalPresentationStyle on iOS13 on all UIViewController instances at once using method swizzling

[Q&A] Is it possible to change UIViewController.modalPresentationStyle value globally on iOS 13 so it behaves like it used to on iOS 12 (or earlier)? Why? In iOS 13 SDK the default value of UIViewController.modalPresentationStyle property has been…
bevoy
  • 751
  • 4
  • 14
14
votes
1 answer

Xcode 11, Cocos2dx compilation problem: Argument value 10880 is outside the valid range [0, 255] btVector3.h

Please see attach image. In Xcode 11, Cocos2d-x giving error : Argument value 10880 is outside the valid range [0, 255] btVector3.h Error coming for code line y = bt_splat_ps(y, 0x80); // in file btVector3.h How to solve this ?
Guru
  • 21,652
  • 10
  • 63
  • 102
14
votes
1 answer

How to line break long large title in iOS 13?

As title, is there a way to split long large titles in UINavigationBar? I tried all those methods, working for iOS 11 but none of them seem work to me on iOS 13 How to set multi line Large title in navigation bar? ( New feature of iOS 11)
JohnnyParafango
  • 316
  • 2
  • 11
14
votes
6 answers

Google Sign in fails on iOS 13 GM

My app has a Sign in with Google button. When I try to sign in on iOS 13.0 GM GIDSignInDelegate didSignInForUser:WithError: returns this error: Error Domain=com.google.GIDSignIn Code=-1 "The operation couldn’t be completed.…
Vladimir Grigorov
  • 10,903
  • 8
  • 60
  • 70
14
votes
2 answers

App called -statusBar or -statusBarWindow on UIApplication

I'm trying to build my app with Xcode 11 beta 6 and iOS 13 beta 8 but it throws this error once it starts to run: Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'App called -statusBar or -statusBarWindow on…
Lukas Würzburger
  • 6,543
  • 7
  • 41
  • 75