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
56
votes
22 answers

SwiftUI hide TabBar in subview

I am working with SwiftUI, and I have some issues with the TabBar. I want to hide the TabBar on a specific subview. Have tried with UITabBar.appearance().isHidden = true It only works on the direct views in the TabView. But when I place it in a…
Dyngberg
  • 663
  • 1
  • 7
  • 10
52
votes
7 answers

SwiftUI withAnimation completion callback

I have a swiftUI animation based on some state: withAnimation(.linear(duration: 0.1)) { self.someState = newState } Is there any callback which is triggered when the above animation completes? If there are any suggestions on how to accomplish…
Kris Gellci
  • 9,539
  • 6
  • 40
  • 47
51
votes
19 answers

didRegisterForRemoteNotificationsWithDeviceToken not called in ios8, but didRegister...Settings is

I followed this thread, but the method didRegisterForRemoteNotificationsWithDeviceToken is still not called : the documentation says : After you call the registerForRemoteNotifications method of the UIApplication object, the app calls this method…
Paul
  • 6,108
  • 14
  • 72
  • 128
49
votes
11 answers

'statusBarOrientation' was deprecated in iOS 13.0 when attempting to get app orientation

Simple put, I was relying on the following code to provide the orientation of the application. This is utilized for several reasons within the application: Per UX specification, the layout of the stackview is set based upon orientation for iPad…
CodeBender
  • 35,668
  • 12
  • 125
  • 132
49
votes
16 answers

How to fix "IPA processing failed" error in xcode 11?

When I tried to create IPA file using Distribute APP option. It gave "IPA processing failed" error. I have checked logs file: IDEDistribution.standard.log file. 2019-08-06 18:36:52 +0000 warning: Configuration issue: platform …
R.B Niranjan
  • 628
  • 1
  • 7
  • 12
48
votes
12 answers

UIWindow not showing over content in iOS 13

I am upgrading my app to use the new UIScene patterns as defined in iOS 13, however a critical part of the app has stopped working. I have been using a UIWindow to cover the current content on the screen and present new information to the user, but…
mHopkins
  • 590
  • 1
  • 4
  • 10
45
votes
4 answers

iOS 13 TestFlight not reporting crash, only feedback.json

With the new feature of iOS 13 to report crashes for TestFlight builds, on some apps I have a problem that only feedback.json is reported without actual crash report. Is there anything to enable? Worth to mention that crashalitics is enabled and not…
David Chelidze
  • 1,143
  • 12
  • 19
45
votes
12 answers

ios 13 - Custom SearchBar with UISearchBar _searchField not working

Before Xcode-11-Beta (ios13) below code for custom searchbar value for key to get textField working fine. Now getting below crash log. 'NSGenericException', reason: 'Access to UISearchBar's _searchField ivar is prohibited. This is an application…
Pratik Sodha
  • 3,679
  • 2
  • 19
  • 38
43
votes
4 answers

How to configure ContextMenu buttons for delete and disabled in SwiftUI?

I tried to configure the button in the contextMenu, but it's not working. Text("A label that have context menu") .contextMenu { Button(action: { // remove it }) { Text("Remove") …
Mojtaba Hosseini
  • 95,414
  • 31
  • 268
  • 278
42
votes
2 answers

iOS Simulator (11.1) that comes with Xcode 11.1 GM Seed seems to be unable to boot iOS 13.1 devices

I am running Mac OS X Mojave 10.14.6. The only app I have installed is a freshly downloaded Xcode 11.1 GM Seed (11A1027). There are no prior files, projects or apps on this system, as I just wanted to start learning Swift programming. In Xcode, I…
Tom
  • 532
  • 1
  • 5
  • 11
42
votes
1 answer

addSubview SwiftUI View to UIKit UIView in Swift

I have tried to addSubview a SwiftUI View to UIView. self.view.addSubview(contentView) Error: Cannot convert value of type 'ContentView' to expected argument type 'UIView' Kindly help me to implement this UI. import UIKit import SwiftUI class…
Kathiresan Murugan
  • 2,783
  • 3
  • 23
  • 44
41
votes
6 answers

@Published property wrapper not working on subclass of ObservableObject

I have a class conforming to the @ObservableObject protocol and created a subclass from it with it's own variable with the @Published property wrapper to manage state. It seems that the @published property wrapper is ignored when using a subclass.…
thiezn
  • 1,874
  • 1
  • 17
  • 24
40
votes
4 answers

Xcode 12 beta and iOS 14: Weird console logs "objc[5551]: Class ... is implemented in both"

I have just downloaded Xcode 12 beta 2 and now I'm getting a bunch of weird logs in the console while I'm running my app (these warnings don't appear when using Xcode 11.5). They look like the following one: objc[5551]: Class CSAudioFileManager is…
finebel
  • 2,227
  • 1
  • 9
  • 20
40
votes
3 answers

How to fix "Read-Write-Data Sandbox: error when using Mac Catalyst

I recently updated to macOS Catalina so I could update some of my apps with Mac support using Catalyst. Whenever I run the app and it tries to access the CloudKit data (I use CloudKit to sync Core Data, Data if an iCloud Account is available), it…
117MasterChief96
  • 548
  • 1
  • 5
  • 16
38
votes
4 answers

iOS 13 UIBarButtonItem not clickable and overlapping UINavigationBars when using UISearchController

I got a navigation bar containing some UIBarButtonItem buttons and a UISearchBar hooked up like this var searchController: UISearchController! override func viewDidLoad() { super.viewDidLoad() title = "Test" tableView.delegate = self …
heyfrank
  • 5,291
  • 3
  • 32
  • 46