Description
Goal
The primary goal is to ship projection tooling along with corresponding runtime support that have ability to generate C# bindings for Swift. Our objective is not full Swift support, but a targeted approach based on specific use-cases.
Swift has richer semantics than .NET, and experimentation in the previous release has shown that achieving full Swift interop would take several releases.
As the primary users will be from the .NET ecosystem, our goal is to focus on functionality, ensuring that the generated bindings resemble C# patterns rather than aiming for a Swift-like experience. As MAUI is the default framework used for mobile development within the .NET ecosystem, all examples will be based on it.
Motivation
The Swift programming language has a different ABI, runtime environment, and object model, making it challenging to call into from the .NET runtime. Apple's shift towards Swift highlights the importance of MAUI being compatible with Swift libraries and frameworks to remain relevant in the Apple ecosystem. Ideally, the interop should operate with a minimal set of additional wrappers and enable direct calls to various Swift functions.
Plan
This project is divided into three user-stories.
Runtime: At the lowest level, ensuring that Swift can be called from .NET without an intermediate step through C or Swift. The support must be implemented across all supported .NET runtimes targeting macOS and Apple mobile platforms.
Code-Generation: This layer involves the generation of C# bindings for Swift. The projection tooling consists of importing Swift into .NET, exporting .NET to Swift, and tooling distribution.
End-user scenarios: At the highest level, we are driven by defined examples. For example, a MAUI iOS developer should be able to create an iOS app that interacts seamlessly with Swift libraries and frameworks. The primary goal at this level includes defining the scope of the work.
.NET 9
We’ve introduced types for .NET interop with Swift code. The projection tooling can generate bindings for structs and enums with static methods.
.NET 10
In this release, we will focus on essential language features only based on the specific use-cases.
User stories
- Use-cases for Swift interop in .NET 10 #95636
- Projection tooling for Swift interop in .NET 10 #95633
- Runtime support for Swift Interop in .NET 10 #108662
Future
All milestones are informational/ tentative only, and will be updated according to the progress.