Solving “Reference to captured var in concurrently-executing code” in Swift
Updated on: December 16, 2024In Xcode 16, this error actually is sometimes presented as "Passing closure as a ‘sending’ parameter risks causing data races between code in the current task and concurrent execution of the closure". The cause is the exact same as what’s covered in this post. Once you start migrating to the Swift 6 language mode, you’ll […]
Read post