SwiftBindings.Kingfisher 8.11.1

dotnet add package SwiftBindings.Kingfisher --version 8.11.1
                    
NuGet\Install-Package SwiftBindings.Kingfisher -Version 8.11.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SwiftBindings.Kingfisher" Version="8.11.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SwiftBindings.Kingfisher" Version="8.11.1" />
                    
Directory.Packages.props
<PackageReference Include="SwiftBindings.Kingfisher" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add SwiftBindings.Kingfisher --version 8.11.1
                    
#r "nuget: SwiftBindings.Kingfisher, 8.11.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package SwiftBindings.Kingfisher@8.11.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=SwiftBindings.Kingfisher&version=8.11.1
                    
Install as a Cake Addin
#tool nuget:?package=SwiftBindings.Kingfisher&version=8.11.1
                    
Install as a Cake Tool

SwiftBindings.Kingfisher

Native Swift interop bindings for Kingfisher, a powerful pure-Swift library for downloading and caching images from the web. 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 → — Swift→C# naming, the KF fluent builder for setting images on a UIImageView, awaited retrieval via KingfisherManager, cache and downloader configuration, processors, prefetching, and the limitations that decide which APIs are callable.

Installation

dotnet add package SwiftBindings.Kingfisher

Requirements

  • .NET 10.0+
  • iOS 15.0+ — the binding's enforced deployment floor. Upstream Kingfisher supports iOS 13.0, but the .NET binding's SupportedOSPlatformVersion is clamped up to the .NET iOS platform floor (15.0), so that is the effective minimum for consumers.
  • macOS host for development

Usage

Shared manager and caches

using Kingfisher;

var manager = KingfisherManager.Shared;
var cache = ImageCache.Default;
var downloader = ImageDownloader.Default;

Custom cache and downloader

var cache = new ImageCache("MyCache");
var downloader = new ImageDownloader("MyDownloader");

Image processors

using var processor = DefaultImageProcessor.Default;

See Kingfisher's documentation for the full API surface (download options, cache policies, processors, indicators).

Documentation

How It Works

These bindings are auto-generated by Swift Dotnet Bindings using .NET 10's native Swift interop via the SwiftBindings SDK.

Building from Source

Only needed if you're contributing or building the package locally.

# One-time: install the pinned Nuke CLI from .config/dotnet-tools.json
dotnet tool restore

# Build the package end-to-end (xcframework + bindings + dotnet build)
dotnet nuke BuildLibrary --library Kingfisher

License

The bindings are MIT licensed. Kingfisher itself is MIT licensed — see Kingfisher's license.

Product Compatible and additional computed target framework versions.
.NET net10.0-ios26.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
8.11.1 76 8/5/2026
8.11.0 85 7/31/2026
8.10.0 124 6/27/2026