SwiftLee Weekly - Issue 251


This week's SwiftLee Weekly covers:

  • Dealing with in-app subscription billing issues
  • Getting started with Swift
  • Localization using SPM

Enjoy this week's SwiftLee Weekly!

THIS WEEK'S BLOG POST

Swift Tutorials: Learn Swift with Easy-to-Follow Code Examples

Since 2015, I've published over 250 articles. Yet, a good starting point didn't exist, and outside of search engine results, it's pretty hard to discover all the valuable content I've written. Therefore, I used this holiday week to publish an entry article for both beginner and intermediate articles. I've listed my must-read articles, so even if you're experienced, there's much to discover!

SPONSORED

Codemagic makes Apple M2 machines available, even on the free tier!

Codemagic is the first CI/CD to make Apple M2 machines available to everyone (including the free tier!). This is a free upgrade from M1 machines with no price change. Get started today.

CURATED FROM THE COMMUNITY

From Icon to Identity: The Essentials of Branding Your App

You might know how to code, but how do you create a good app branding? This article can be a great starting point.
createwithswift.com

VoiceOver on macOS: First Time, Huh?

Do you know how to turn on and use VoiceOver on the Mac? Bas Broek felt overwhelmed the first time, but that all had a reason.
basbroek.nl

Creating a SwiftUI text view with tappable links

I realize I run into this every now and then: how to add links into SwiftUI text? There are different ways, and I know that, but I always struggle to pick the right solution. Hopefully, that’s not happening anymore with this article by Daniel Saidi.
danielsaidi.com

Adjust the intensity of colors in SwiftUI views

You have a primary brand color, but how do you get other color tints that go well with it? This article by Natalia Panferova shares a convenient SwiftUI modifier that can help you.
nilcoalescing.com

Never Miss a Localized String Value Again

When I first noticed this article, I expected some kind of launch argument that would duplicate words or turn them into red. The opposite is true and the solution is actually quite interesting!
jacobzivandesign.com

SWIFT EVOLUTION

An overview of last week's Swift Proposal state changes. Check them out when they're in review, as it's your opportunity to influence the direction of Swift's future.

QUESTION OF THE WEEK

How do you prevent in-app subscriptions from ending due to billing issues?
Anonymous

This is a great question and something that's solved better on the web than in apps. As app developers, we're required to built custom solutions to get notified of user billing issues and email users accordingly.

Tools like RevenueCat offer webhooks that you can use to get a signal when a user subscription status changes to in_grace_period or in_billing_retry. You can use this status in-app to show an alert to inform users that their subscription might end soon if they don't fix their billing settings.

For RocketSim, I decided to go one step further. I've connected RevenueCat to Kit, and use an email sequence to inform users via email about their billing issues. You can use this deeplink to let users dive into their billing settings: https://apps.apple.com/account/billing for a higher chance of solving.

Altogether, it's these small improvements that will increase your subscription retention, revenue, and LTV.

Want to have your question answered next week? Ask your question via this form (anonymously) or reply to this email with your question.

EARN ROCKETSIM LIFETIME

Share and Earn RocketSim Lifetime & a 1-on-1 coaching session

Apple has recognized RocketSim as an Essential Developer Tool in the Mac App Store, and now you can get lifetime Pro access by sharing your unique referral link!

How to get started:

[RH_REFLINK GOES HERE]

Rewards:

  • Earn your first reward after just 3 sign-ups!
  • Check your progress anytime using your referral dashboard.
  • The grand prize? A personalized 1-on-1 career coaching session!

Several subscribers have already claimed their rewards—will you be next?

Thank you so much for your support, and until next Tuesday,

Antoine

SwiftLee Weekly by Antoine van der Lee

A new SwiftLee article, code snippet, Swift Evolution updates, 5 top community articles, and a weekly answer to a question from the community to level up your Swift skills.

Read more from SwiftLee Weekly by Antoine van der Lee

This week's SwiftLee Weekly covers: App Store Optimization - Screenshots Observation in Swift deep dive Memory Integrity Enforcement Enjoy this week's SwiftLee Weekly! THIS WEEK'S BLOG POST Introducing Diagnostics: Improved Debugging and User Support If you've been reporting issues to me for RocketSim, you might have noticed the HTML attachment to your emails. Today, I'm telling you all about these reports and how they can streamline your app's support channel. This could be a way to reduce...

This week's SwiftLee Weekly covers: Swift 6.2' new String Interpolation feature When should you use an actor? A better way of matching strings in tests You've might noticed I'm sending this out later than normally, and that's for a reason! It's Apple event day. Here are the most important links for this week: Xcode 26 RC 1 (Apple Silicon) Xcode 26 RC 1 And the most important date: September 15th is OS launch day! If you want your app's update to be available on day 1 of iOS, macOS, iPadOS,...

This week's SwiftLee Weekly covers: Dealing with Xcode migrations Debugging Swift Concurrency Controlling warnings in Swift Packages Enjoy this week's SwiftLee Weekly! THIS WEEK'S BLOG POST @ViewBuilder usage explained with code examples It's one of the most used result builders in SwiftUI: @ViewBuilder. Even if you're new to this attribute—you're already using it if you're writing SwiftUI code. Unde SPONSORED Fastlane alternative - Codemagic CLI tools Are you tired of Ruby and Fastlane...