How to update your mobile apps to new iOS 13 features

How to update your mobile apps to new iOS 13 features

blog post publisher

Dan

Mobile Developer

5 minutes

Dec 5, 2019

Trends
howto
ios
appdevelopment
updates
iphone
iOS13

This fall of 2019, a new iOS 13 version was released. Every iPhone or iPad user was excited about new features and improvements. This was also true for us, mobile developers, as we get additional frameworks and capabilities to play with, bringing amazing ideas to life.

However, thereโ€™s a catch โ€“ some of these changes might affect our existing iOS apps when they run on iOS 13. Apple is doing a good job in preserving the overall compatibility. However, there still are some iOS 13 new features that require our attention, and probably some code changes, too. So this article will present our immediate goals and actions for the iOS 13 release.

ย 

Main iOS 13 Updates to Watch

Iโ€™m sure most of us canโ€™t wait to dive into the new stuff and try it out. Although the most important thing after such a release is to make sure our existing apps work properly on the fresh version of iOS 13. There are 3 main things that we watch:

  • Do the current apps run on iOS 13 without issues, crashes or have bugs?ย 

  • Can we build and run iOS 13 apps in Xcode 11?

  • How to update apps to iOS 13, while not altering the current behavior.

One could ask: โ€œWhy wonโ€™t they run exactly the same as before?โ€. Well, a good reason would be that a fresh iOS version can bring limitations, as well as changes to the existing parts. And this is true for iOS 13 too. Donโ€™t think of them as iOS 13 issues. It is rather a differentiator from your competitors on the iOS app market if you are first to adapt to them.

ย 

1. VoIP Push Notifications

One important restriction it brings is related to data collection using VoIP APIs. It will definitely impact important apps like WhatsApp or Facebook Messenger.ย 

ย 

VoIP push notification iOS 13 update is a new feature for iphones and ipads Wolfpack Digital team explains how to implement

ย 

Thereโ€™s a special notification type called โ€œVoIP push notificationโ€. It was designed to be used when such an app receives voice or video calls, so they can notify users. However, some of them used these notifications also just to launch or resume processes in the background, which could include: connecting to a server, retrieve information, and also collect some data. Well, that wonโ€™t be possible anymore. Apps will be required to display a CallKit call immediately after receiving a VoIP push notification, without doing other actions.ย 

So, if this is the case for one of your projects too, what can you do? Well, first of all, we need to only use VoIP notifications for showing incoming calls, not messages or performing other actions. An alternative for the latter cases would be โ€œcontent-availableโ€ background notifications. But Apple also recommends the usage of Notification Service Extensions. If you havenโ€™t used them before, on short โ€“ they allow us to modify incoming push notification before they are delivered to the user (for example, to change some text or download extra data).

They are also introducing a โ€œbackground tasks frameworkโ€, to allow task scheduling for the future. These changes and recommendations on how to update apps to iOS 13 are outlined in Apple's WWDC presentation on privacy changes in iOS 13.

ย 

2. Default Modal Presentation Style

Another important and extremely visible iOS 13 update is โ€“ a new modal presentation style. It will be by default โ€œpage sheetโ€, not full screen. So, modally presented screens will look like this:

ย 

Modal Presentation Style iOS 13 update that affected most of app store can by implemented following Wolpfack Digital example

ย 

This change will surely hit most of the App Store sinceย  Overall itโ€™s not a bad change. The UI layout will stay the same, but there are some cases where it can change the functionality. For example, if you modally present a Login screen over something else and it canโ€™t be dismissed until a user successfully logs in, well, with a page sheet presentation style, it can be dismissed by a swipe gesture from top to bottom.

The best way to solve this would be to adapt the UI in such a way that it makes sense on both presentation styles (full screen on iOS 12 and page sheet on iOS 13). However, this can be a bit time consuming at first. And to solve the problem from the example from above, there are 2 other options:

  • A new property on ViewControllers, called โ€œisModalInPresentationโ€ which can be set to โ€œtrueโ€ if the app shouldnโ€™t allow the interactive dismissal with the swipe gesture. This has to be set on each modally presented ViewController, and it can also be done via UIAdaptivePresentationControllerDelegate.

  • Manually setting the presentation style to โ€œfull screenโ€ for each modal presentation (no matter if itโ€™s from the storyboard or from code).

Here are a couple of examples directly from Xcode. The first one is programmatic:

How to code iOS 13 update in Xcode 11 to implement modal presentation style how Wolfpack Digital developers do

While the second one is from the storyboard:

ย 

Keeping the iOS app consistent by implementing iOS 13 updates with the help of Wolfpack Digital and their developers

ย 

All in all, page sheets will become more and more popular. So itโ€™s better to transition to this style over time. But firstly itโ€™s important to keep an iOS app consistent and working properly.ย 

ย 

3. Dark Mode surprises

One more thing that again can affect a large amount of apps is the support for iOS 13 Dark Mode. This is a very cool and long-awaited feature since it was already available on some Android phones, and now we have it on iOS too.

ย 

iOS 13 Dark mode is a new feature that brings color changes to the UI layout and can be made by Wolfpack Digital team

ย 

One more thing that again can affect a large amount of apps is the support for iOS 13 Dark Mode. This is a very cool and long-awaited feature since it was already available on some Android phones, and now we have it on iOS too.

Mobile apps that are already in the store, built with Xcode 10 or earlier, should work fine, as switching to dark mode wonโ€™t affect their colors. However, when building them with Xcode 11, there might be some UI elements that have default colors which were not explicitly changed in code or from the interface builder. They will have a different appearance when the iPhone or iPad is switched to dark. So, if we have a UITableView with white cells, but they donโ€™t cover the entire screen, the background of the table will be black while everything else has a light theme.

Again, the proper (but long) solution would be to go through every UI element and set its color using the new system colors from Xcode 11. Or maybe it's better for you to a custom color that supports both modes. In order to support different shades for the same-named color, we can set the Appearances of each color in the assets catalog to Any/Light/Dark, under the Attributes inspector.

As you might guess, this will take some time even for the most virtuous app developers. Our app development team got 3 options for you if a new release is necessary before being able to perform these color changes.

3 methods of fast dark mode implementation:

  • Continue to build the iOS app with Xcode 10, which will be possible until April 2020;

  • Manually set the default backgrounds and colors to the desired nuances;

  • Build the app with Xcode 11 but add a new key in the .plist file: UIUserInterfaceStyle = Light. In this way, iOS dark mode support will be ignored.

Example:

ย 

Build the app in Xcode 11 with iOS 13 dark mode feature for iphones and ipads or ask Wolfpack Digital for help

ย 

Similarly to the page sheets presented earlier, supporting iOS 13 dark mode will become almost mandatory as time passes, especially for newly launched apps.

ย 

Conclusion

Getting a new iOS version is an exciting moment every year, and 2019 didnโ€™t disappoint us. We got things like SwiftUI, iPadOS, Apple Sign-In, new iOS 13 features and so on. Catch up with the other 5 essential iOS trends you should implement to stay in the App Store race. However, the first thing to consider during these moments is to check our existing apps. We should make sure they still work well and offer a pleasant user experience.

Hopefully, the aspects from above are good checkpoints for any mobile app developer or team.ย 

Until then, happy coding!

Or should we code these new iOS 13 features together? Letโ€™s talk.

insights

pack knowledge

blog post image

Top 10 Healthtech Startups in Ireland (2026)

blog post publisher

Gina Lupu Florian

Founder & co-CEO

Reading time: 7 min

Jun 15, 2026

A guide to Ireland's top 10 healthtech startups in 2026 and what it takes to build a compliant, fundable health product.

blog post image

How to Choose a Software Development Partner | Takeaways from Breakfast & Insights, Dublin

blog post publisher

Cristina Strรฎmbu

Marketing Specialist

Reading time: 5 min

Jun 9, 2026

Founders gathered in Dublin to answer one question: what should I build, and can I afford it? Here's what the room said about choosing a software partner.

blog post image

How to Build Your MVP in 2 - 4 Weeks: The AI-Native Approach

blog post publisher

Andi Nicolescu

CTO

Reading time: 5 min

May 26, 2026

Wolfpack Digital's CTO on how an AI-native MVP ships in 2โ€“4 weeks without lowering the engineering bar, what's actually changed in design and engineering workflows, and how my team delivers it.