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
33
votes
9 answers

ASAuthorizationAppleIDRequest with name and mail scope returns nil values

I'm implementing Sign in with Apple and noticed that the email and fullName properties of the returned ASAuthorizationAppleIDCredential are only filled on the very first Sign-In for this Apple ID. On all subsequent Sign-Ins those properties are…
mhaddl
  • 885
  • 1
  • 9
  • 18
33
votes
2 answers

UIColor return wrong values for dark mode colors

I have a custom UITextField subclass which changes its border color when typing something in it. I'm listening for changes by calling self.addTarget(self, action: #selector(textFieldDidChange(_:)), for: .editingChanged) and then, in…
ov1d1u
  • 958
  • 1
  • 17
  • 38
33
votes
2 answers

CoreData crash error Xcode 11 Beta, IOS 13 Beta

Im trying building my application from Xcode11 beta on phone IOS 13 Beta. I have crash when application loading. 2019-07-22 13:58:12.910460+0300 GoodWine[3738:792501] [error] fault: One or more models in this application are using transformable …
32
votes
8 answers

Mac-catalyst - minimum window size for Mac catalyst app

Mac catalyst allows to resize window, is there any way to provide minimum window size for Mac catalyst app?
Hiren Gujarati
  • 1,039
  • 14
  • 32
31
votes
2 answers

NSPersistentCloudKitContainer: How to check if data is synced to CloudKit

I have implemented NSPersistentCloudKitContainer to get my data synced to CloudKit, I would like to know that the sync is finished and there is no other change pending to be synced. When I tried reinstalling the app, I start getting my data back…
FE_Tech
  • 1,534
  • 13
  • 25
31
votes
5 answers

How to force disable iOS dark mode in React Native

The new iOS 13 update introduces an optional system-wide. This causes e.g. the StatusBar to have light text, which might become unreadable on a white background. It also breaks the iOS Datetime Picker (see DatePickerIOS or…
David Schumann
  • 13,380
  • 9
  • 75
  • 96
31
votes
2 answers

iOS 13 TLS issue

I have installed iOS 13 beta version and run my framework which contains a lot of network requests, but I got this error: 2019-09-19 15:01:33.566811+0200 ---[395:25439] Connection 4: default TLS Trust evaluation failed(-9814) 2019-09-19…
Dragisa Dragisic
  • 731
  • 2
  • 9
  • 19
31
votes
4 answers

iOS13 share sheet: how to set preview thumbnail when sharing UIImage

The new share sheet on iOS13 shows a preview/thumbnail of the item being shared on its top left corner. When sharing an UIImage using an UIActivityViewController I would expect a preview/thumbnail of the image being shared to be displayed there…
mmklug
  • 2,252
  • 2
  • 16
  • 31
31
votes
6 answers

How to detect iPad and iPad OS version in iOS 13 and Up?

I can detect iOS 13 on iPhone but in iPad OS 13 navigator.platform comes as MacIntel. So it is not possible to get iPad identified using below code, but it works perfectly on iPhone. if (/iP(hone|od|ad)/.test(navigator.platform)) { …
Madusanka
  • 2,968
  • 5
  • 30
  • 41
30
votes
1 answer

Setting network activity indicator is deprecated

I just found that UIApplication.shared.isNetworkActivityIndicatorVisible is deprecated, but no alternative property or method is suggested to be used. I assume that iOS will handle showing and hiding network activity indicator starting from iOS…
Ahmed Osama
  • 854
  • 1
  • 8
  • 17
29
votes
9 answers

iOS 13 - UIPopoverPresentationController sourceview content visible in the arrow

When I am displaying some view in UIPopoverPresentationController and presenting it as popover popoverCon?.modalPresentationStyle = UIModalPresentationStyle.popover the content have moved upward toward and a some part is being display in the arrow.…
Hassy
  • 5,068
  • 5
  • 38
  • 63
28
votes
3 answers

Unable to swipe to delete with tableview using diffable data source in iOS 13

I'm updating a UITableViewController to use the new UITableViewDiffableDataSource, I have everything working except Swipe to delete. This is an example of how I use swipe to delete func tableView(_ tableView: UITableView,…
DogCoffee
  • 19,820
  • 10
  • 87
  • 120
28
votes
9 answers

How to detect iPad Pro as iPad using javascript?

We were able to detect an iPad device using javascript like this: function isDeviceiPad(){ return navigator.platform.match(/iPad/i); } That worked perfectly in detecting iPad devices, but when we checked from an iPad Pro (10.5 inch), it does…
Wonka
  • 8,244
  • 21
  • 73
  • 121
28
votes
9 answers

How do I prevent iOS 13's Dark Mode from changing the text color in my app's status bar?

My navigation bar has a white backgroundColor and my status bar uses the dark textColor. When a user changes the iOS theme to Dark Mode, the status bar changes to white text on a white background. As a result, I can't see anything. How can I disable…
EvGeniy Ilyin
  • 1,817
  • 1
  • 21
  • 38
27
votes
7 answers

How to set backgroundColor of UISegmentedControl to white in iOS 13

iOS 13 introduced some changes to the UISegmentedControl including a really nice animation when switching the selected segment. However I'm noticing that it's not displaying the backgroundColor property correctly, it always seems to have a bit of a…
Phil
  • 1,216
  • 2
  • 14
  • 23