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

How do I make the back button text correctly display the last app's name in an app that was opened with a URL scheme?

I have added a web page to my home screen in iOS 13. The web page was loaded in iOS Safari via a data URL in this form: data:text/html;charset=UTF-8;base64, followed by the content of the web page in Base64 representation. I then added the web page…
kas
  • 857
  • 1
  • 15
  • 21
1
vote
1 answer

iOS 13 window background color

The image above is in dark mode, with the following setup in the app delegate: if (@available(iOS 13.0, *)) { self.window.backgroundColor = [UIColor systemBackgroundColor]; } The problem is that the top white should be black in dark mode. How…
Zsolt
  • 3,648
  • 3
  • 32
  • 47
1
vote
2 answers

Turn on system dark mode from app - Swift

I have made my own system of dark mode on my app using Notifications and I have a switch that changes between dark mode on and off. My first question: How do I turn on system dark mode, where the whole phone becomes dark mode as well if it is…
enigrify
  • 281
  • 3
  • 17
1
vote
0 answers

UIMenuController in iOS 13 beta shows with transparent background instead of black background

I am using UIMenuController to display custom options. It was working fine with a black background and white text on UIMenuItems till iOS 12. After upgrading to iOS 13 beta 8 with Xcode 11 beta 7, the background changed to transparent. Is there…
Rishabh Wadhwa
  • 171
  • 2
  • 8
1
vote
2 answers

iOS13 Beta-8 SKVideoNode+AVPlayer show black screen

my app is a AR app to play h.264 video. We created SKVideoNode by AVPlayer and set the SKVideoNode to SKScene, and then create SCNNode to involve this SKScene. - Sample Code AVPlayer *avPlayer = [self getMoviePlayer:path]; SKVideoNode *videoNode =…
1
vote
2 answers

SiriKit iOS13 - Siri Dialog not coming

I am integrating SiriKit into my iOS 13 app. For that I am using Apple's Sample app - Soup Chef for understanding it. In my Custom Intent, I have selected Ask Each Time in Shortcuts App for quantity value. But, When I run the shortcut from Hey,…
Mohammad Zaid Pathan
  • 16,304
  • 7
  • 99
  • 130
1
vote
1 answer

Xcode 11 Beta 6 UISearchBar textfield background color

Any idea how to set the UISearchBar textfield's background color separately from the search bar's tintcolor? [UINavigationBar appearanceWhenContainedInInstancesOfClasses:@[[XYNavigationController class]]].barTintColor = [UIColor redColor]; results…
Zsolt
  • 3,648
  • 3
  • 32
  • 47
1
vote
0 answers

SecTrustEvaluate failure because of certificate validity

We are using the self-signed certificate at the server end. When our iOS App tries to evaluate the certificate, due to new regulations forced upon https://support.apple.com/en-us/HT210176, it fails by giving "recoverableTrustFailure". The reason…
iOSNewbee
  • 11
  • 1
1
vote
1 answer

webRTC blurred screen on iOS 13

webRTC blurred screen on iOS 13. How to fix. I'm using libjingle_peerconnection, https://cocoapods.org/pods/libjingle_peerconnection connect with friend, I'm only see the blurred screen but it work on iOS 12, just not work on iOS 13.
Alvin
  • 51
  • 9
1
vote
2 answers

Border around html content on editing a HTML file loaded onto a WKWebview on iOS13

I'm trying to load a local editable html file onto a WKWebview. WKWebview successfully loads the html file. However, when I start typing into the editable html file, a dark border like view appears around the typed text. This issue is not…
harshith__
  • 447
  • 3
  • 15
1
vote
0 answers

How do I show an iOS 13 SwiftUI View from the AppDelegate?

In my app I've got actions so application(_:performActionFor:completionHandler:) is called when it's executed. Previously it was grabbing the storyboard and showing the right UIViewController. How, in iOS 13, do I grab the appropriate SwiftUI View…
Gargoyle
  • 9,590
  • 16
  • 80
  • 145
1
vote
0 answers

xcodebuild fails with error=nsconsumed-mismatch when using Xcode11 iOS13 SDK

I use the following command to build/archive my project: xcodebuild -UseNewBuildSystem=NO -workspace WORKSPACE -scheme TARGET clean archive The compilation fails with the following error: error: -Werror=nsconsumed-mismatch is currently enabled, but…
pconor
  • 83
  • 8
1
vote
3 answers

Alert won't dismiss (Warning: Attempt to dismiss from view controller...)

So I have a function that shows an alert while Alamofire is doing some stuff and I want to dismiss the alert when Alamofire is done but sometimes it works and sometimes it doesn't! and when it doesn't work I'm getting the error (iOS 13, Xcode 11…
arata
  • 859
  • 1
  • 8
  • 23
1
vote
1 answer

How do I create a variable for NSPersistentContainer and NSPersistentCloudKitContainer with the same name but set depending on the version?

I cannot change my exciting core data stack to NSPersistentCloudKitContainer because that is only a iOS 13 and later support feature but would like to have that set for iOS 13 and later while having NSPersistentContainer for earlier versions. I have…
117MasterChief96
  • 548
  • 1
  • 5
  • 16
1
vote
0 answers

scope button of UISearchBar does not work on IOS 13 when using UISearchDisplayController

I have to maintain a quite old and large objective-c project. Every thing works fine until iOS12 but from iOS13 the scope-button-bar of UISearchBar does not work with UISearchDisplayController. I know that UISearchDisplayController is deprecated but…
harunaga
  • 141
  • 1
  • 1
  • 10
1 2 3
99
100