By using this site, you agree to the Privacy Policy and Terms of Use.
Accept
World of SoftwareWorld of SoftwareWorld of Software
  • News
  • Software
  • Mobile
  • Computing
  • Gaming
  • Videos
  • More
    • Gadget
    • Web Stories
    • Trending
    • Press Release
Search
  • Privacy
  • Terms
  • Advertise
  • Contact
Copyright © All Rights Reserved. World of Software.
Reading: Swift 6.2 Introduces Approachable Concurrency to Simplify Concurrent Programming
Share
Sign In
Notification Show More
Font ResizerAa
World of SoftwareWorld of Software
Font ResizerAa
  • Software
  • Mobile
  • Computing
  • Gadget
  • Gaming
  • Videos
Search
  • News
  • Software
  • Mobile
  • Computing
  • Gaming
  • Videos
  • More
    • Gadget
    • Web Stories
    • Trending
    • Press Release
Have an existing account? Sign In
Follow US
  • Privacy
  • Terms
  • Advertise
  • Contact
Copyright © All Rights Reserved. World of Software.
World of Software > News > Swift 6.2 Introduces Approachable Concurrency to Simplify Concurrent Programming
News

Swift 6.2 Introduces Approachable Concurrency to Simplify Concurrent Programming

News Room
Last updated: 2025/08/03 at 2:33 PM
News Room Published 3 August 2025
Share
SHARE

Announced at its latest developer conference, WWDC25, Swift Approachable Concurrency is a new feature in Swift 6.2 designed to simplify concurrent programming for the most common use cases in mobile apps.

Enabling approachable concurrency will make the Swift compiler more predictable, reducing the number of errors and warnings it generates, which can be overwhelming and not always related to real issues with the code.

Under the hood, approachable concurrency introduces two new compiler flags: infer isolated conformances and the default enforcement of nonisolated(nonsending).

The first feature introduces the notion of isolated conformance, which restricts conformance to a type to the same isolation domain of the conforming type. For example, say we have MyModelType conforming to Equatable, :


@MainActor
class MyModelType: Equatable {
...
}

MyModelType provides an implementation for all Equatable requirements, which will be bound to MyModelType‘s isolation domain, e.g. @MainActor. However, the conformance declaration does not specify any isolation domain, which means that MyModelType appears to the compiler as Equatable conforming on any isolation domain. So, the compiler will happily compile any call to MyModelType‘s implementations of Equatable requirements but this will generate a runtime error when called from a different actor. Compare this to the following declaration:


@MainActor
class MyModelType: @MainActor Equatable {
...

In this case, the conformance is constrained to the same isolation domain as the class implementing it and the compiler will detect any attempt to call Equatable methods on an instance of MyModelType from a non-main actor.

The new infer isolated conformances feature relieves programmers from having to explicitly restrict conformance to Equatable.

The second feature, enforcing nonisolated(nonsending), will ensure that a nonisolated async function will run on the calling actor’s executor by default instead of running on the global executor. This new behavior unifies that of non-async nonisolated functions.

Approachable concurrency is introduced alongside another important concurrency-related feature: use main actor by default. This enforces the principle that all functions run on the main actor unless explicitly directed otherwise by the programmer.

The new features will be welcome to many Swift developers who found that adopting Swift 6 strict concurrency model opened a pandora box of issues, leading many to wonder whether Swift 6 concurrency has moved too far or too fast in a lengthy but extremely interesting thread on the Swift forums.

While the discussion is deep and full of insight, one way to summarize it is that Swift may have gone too fast in pushing concurrency to developers before the language, ecosystem, and documentation were fully ready. It also went too far for mobile apps, which tend to be simpler than general-purpose concurrent software. In practice, most iOS and iPadOS apps operate primarily on the main thread, with only a handful of tasks offloaded to the background to keep the UI responsive.

As Donny Wals, author of several Swift books, including Practical Swift Concurrenty, noted:

Paired with your code running on the main actor by default for new projects created with Xcode 26, you’ll find that approachable concurrency really does deliver on its promise. It gets rid of certain obscure compiler errors that required weird fixes for non-existent problems.

Approachable Concurrency and default main actor use are just two of several new features aimed at simplifying concurrency programming that will be progressively released in upcoming Xcode 26 betas according to the official vision document by the Swift team.

Sign Up For Daily Newsletter

Be keep up! Get the latest breaking news delivered straight to your inbox.
By signing up, you agree to our Terms of Use and acknowledge the data practices in our Privacy Policy. You may unsubscribe at any time.
Share This Article
Facebook Twitter Email Print
Share
What do you think?
Love0
Sad0
Happy0
Sleepy0
Angry0
Dead0
Wink0
Previous Article How to Set up Your Tech Office in Garden Rooms or Pods for Ultimate Productivity
Next Article Delta Air Lines addresses change to pricing that ‘targets customer pain points’
Leave a comment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Stay Connected

248.1k Like
69.1k Follow
134k Pin
54.3k Follow

Latest News

The Impossibility Theorem Behind Truthful Blockchain Bidding Mechanisms | HackerNoon
Computing
Google will soon fix a security loophole in Chrome’s password autofill
News
Apple Watch discounts: Save up to $150 on select styles
News
ESA prepares for a hypersonic leap. Invictus is his letter to compete with China and the USA on extreme flights
Mobile

You Might also Like

News

Google will soon fix a security loophole in Chrome’s password autofill

3 Min Read
News

Apple Watch discounts: Save up to $150 on select styles

1 Min Read
News

Burt Reynolds’ ex-wife & 80s actress dies aged 79 after ‘prolonged’ illness

2 Min Read
News

Today's NYT Wordle Hints, Answer and Help for Aug. 4 #1507 – CNET

2 Min Read
//

World of Software is your one-stop website for the latest tech news and updates, follow us now to get the news that matters to you.

Quick Link

  • Privacy Policy
  • Terms of use
  • Advertise
  • Contact

Topics

  • Computing
  • Software
  • Press Release
  • Trending

Sign Up for Our Newsletter

Subscribe to our newsletter to get our newest articles instantly!

World of SoftwareWorld of Software
Follow US
Copyright © All Rights Reserved. World of Software.
Welcome Back!

Sign in to your account

Lost your password?