Disable the interactive dismissal of presented view controller

iOS 13 introduces a new design of modalPresentationStyle .pageSheet (and its sibling .formSheet) for modally presented view controllers… …and we can dismiss these sheets by sliding the presented view controller down (interactive dismissal). Although the new “pull-to-dismiss” feature is pretty useful, it may not always be desirable. THE QUESTION: How can we turn the interactive … Read more

How to resolve: ‘keyWindow’ was deprecated in iOS 13.0

I’m using Core Data with Cloud Kit, and have therefore to check the iCloud user status during application startup. In case of problems I want to issue a dialog to the user, and I do it using UIApplication.shared.keyWindow?.rootViewController?.present(…) up to now. In Xcode 11 beta 4, there is now a new deprecation message, telling me: … Read more

Why I get the console warning: [Process] kill() returned unexpected error 1 when I load a WKWebView in iOS13.2?

Since I installed the iOS 13.2 beta, I have been getting a debug console error message. It happens every time I load a ViewController with a WKWebView object in the storyboard. Then the following message is shown continuously while the web view is visible … 2019-10-10 12:10:47.867830+0200 (…) [Process] kill() returned unexpected error 1 2019-10-10 … Read more