IOS Development profile picture

Solving actor-isolated protocol conformance related errors in Swift 6.2 Swift 6.2 comes with several quality of life improvements for concurrency. One of these features is the ability to have actor-isolated conformances to protocols. Another feature is that your code will now run on the main actor by default. This does mean that sometimes, you’ll run into compiler errors. In this blog post, I’ll explore […]
https://www.donnywals.com/solv....ing-actor-isolated-p


Discover the world at Altruu, The Discovery Engine
    IOS Development profile picture

What is @concurrent in Swift 6.2? Swift 6.2 is available and it comes with several improvements to Swift Concurrency. One of these features is the @concurrent declaration that we can apply to nonisolated functions. In this post, you will learn a bit more about what @concurrent is, why it was added to the language, and when you should be using @concurrent. […]
https://www.donnywals.com/what....-is-concurrent-in-sw


Discover the world at Altruu, The Discovery Engine
    IOS Development profile picture

Exploring tab bars on iOS 26 with Liquid Glass When your app has a tab bar and you recompile it using Xcode 26, you will automatically see that your tab bar has a new look and feel based on Liquid Glass. In this blog post, we’ll explore the new tab bar, and which new capabilities we’ve gained with the Liquid Glass redesign. I’ll also […]
https://www.donnywals.com/expl....oring-tab-bars-on-io


Discover the world at Altruu, The Discovery Engine
    IOS Development profile picture

Setting default actor isolation in Xcode 26 With Swift 6.2, Apple has made a several improvements to Swift Concurrency and its approachability. One of the biggest changes is that new Xcode projects will now, by default, apply an implicit main actor annotation to all your code. This essentially makes your apps single-threaded by default. I really like this change because without this […]
https://www.donnywals.com/sett....ing-default-actor-is


Discover the world at Altruu, The Discovery Engine
    IOS Development profile picture

Opting your app out of the Liquid Glass redesign with Xcode 26 On iOS 26, iPadOS 26 and more, your apps will take on a whole new look based on Apple's Liquid Glass redesign. All you need to do to adopt this new style in your apps is recompile. Once recompiled, your app will have all-new UI components which means your app will look fresh and right […]
https://www.donnywals.com/opti....ng-your-app-out-of-t


Discover the world at Altruu, The Discovery Engine