SwiftBindings.Apple.WeatherKit
26.2.15
dotnet add package SwiftBindings.Apple.WeatherKit --version 26.2.15
NuGet\Install-Package SwiftBindings.Apple.WeatherKit -Version 26.2.15
<PackageReference Include="SwiftBindings.Apple.WeatherKit" Version="26.2.15" />
<PackageVersion Include="SwiftBindings.Apple.WeatherKit" Version="26.2.15" />
<PackageReference Include="SwiftBindings.Apple.WeatherKit" />
paket add SwiftBindings.Apple.WeatherKit --version 26.2.15
#r "nuget: SwiftBindings.Apple.WeatherKit, 26.2.15"
#:package SwiftBindings.Apple.WeatherKit@26.2.15
#addin nuget:?package=SwiftBindings.Apple.WeatherKit&version=26.2.15
#tool nuget:?package=SwiftBindings.Apple.WeatherKit&version=26.2.15
SwiftBindings.Apple.WeatherKit
Native .NET bindings for Apple's WeatherKit framework — current conditions, hourly and daily forecasts, severe-weather alerts, and historical data. These are not Objective-C proxy wrappers; they use .NET 10's native Swift interop for direct, high-performance calls into Swift APIs from C#.
📖 Full usage guide → — the complete fetch path (
WeatherService→Weather→ current/hourly/daily forecasts), readingMeasurement<T>values, conditions/precipitation/wind/UV/moon enums, alerts, attribution, and the APIs that aren't bound yet.
Installation
dotnet add package SwiftBindings.Apple.WeatherKit
Requirements
- .NET 10.0+
- Target framework:
net10.0-ios26.2(or-macos26.2/-maccatalyst26.2/-tvos26.2) or higher. The package is compiled against the iOS 26.2 SDK supplement, so your app's<TargetFramework>platform version must be ≥ 26.2 to restore it — an explicit lower TPV (e.g.net10.0-ios18.0) or a barenet10.0-ioswhose installed workload defaults below 26.2 fails restore withNU1202. This is the compile-SDK pin, not your app's deployment minimum. - Deployment minimum is separate — set your app's real minimum OS with
<SupportedOSPlatformVersion>(independent of the TFM above). Individual APIs that need a newer OS at runtime are gated by generated[SupportedOSPlatform]attributes; the C# compiler flags a call that isn't valid for your target. - macOS host for development
- WeatherKit capability enabled and a paid Apple Developer Program membership (WeatherKit usage is metered and requires entitlement)
Usage
using WeatherKit;
var service = WeatherService.Shared;
// Get current attribution (logo + URL link required by Apple's terms)
var attribution = await service.GetAttributionAsync();
// Localised condition / phase descriptions
var phase = MoonPhase.Full.GetDescription();
var direction = Wind.CompassDirectionKind.North.GetDescription();
Iterating a forecast
Forecast<T> projects to IReadOnlyList<T>, so the standard C# enumeration shape just works:
// `weather` is an instance returned by WeatherService.GetWeatherAsync(...)
foreach (var hour in weather.HourlyForecast)
{
Console.WriteLine($"{hour.Date}: {hour.Temperature}");
}
var firstDay = weather.DailyForecast[0];
var dayCount = weather.DailyForecast.Count;
Documentation
- Usage guide (wiki) — full C# walkthrough of the binding surface
- Apple WeatherKit framework
How It Works
These bindings are auto-generated by Swift Dotnet Bindings using .NET 10's native Swift interop via the SwiftBindings SDK.
License
The bindings are MIT licensed. WeatherKit is part of the Apple SDK; refer to Apple's licensing for the underlying framework.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0-ios26.2 is compatible. net10.0-maccatalyst26.2 is compatible. net10.0-macos26.2 is compatible. net10.0-tvos26.2 is compatible. |
-
net10.0-ios26.2
- SwiftBindings.Apple (>= 26.2.9)
- SwiftBindings.Runtime (>= 0.20.0 && < 0.21.0)
-
net10.0-maccatalyst26.2
- SwiftBindings.Apple (>= 26.2.9)
- SwiftBindings.Runtime (>= 0.20.0 && < 0.21.0)
-
net10.0-macos26.2
- SwiftBindings.Apple (>= 26.2.9)
- SwiftBindings.Runtime (>= 0.20.0 && < 0.21.0)
-
net10.0-tvos26.2
- SwiftBindings.Apple (>= 26.2.9)
- SwiftBindings.Runtime (>= 0.20.0 && < 0.21.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 26.2.15 | 74 | 9/22/2026 |
| 26.2.14 | 101 | 9/5/2026 |
| 26.2.13 | 100 | 9/2/2026 |
| 26.2.12 | 109 | 8/29/2026 |
| 26.2.11 | 104 | 8/24/2026 |
| 26.2.10 | 124 | 8/5/2026 |
| 26.2.9 | 117 | 7/31/2026 |
| 26.2.8 | 143 | 6/27/2026 |
| 26.2.7 | 132 | 6/15/2026 |
| 26.2.6 | 141 | 6/11/2026 |
| 26.2.5 | 142 | 6/1/2026 |
| 26.2.3 | 126 | 5/19/2026 |
| 26.2.1 | 127 | 5/3/2026 |