Xamarin.CustomImageView.iOS
1.0.2
dotnet add package Xamarin.CustomImageView.iOS --version 1.0.2
NuGet\Install-Package Xamarin.CustomImageView.iOS -Version 1.0.2
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="Xamarin.CustomImageView.iOS" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Xamarin.CustomImageView.iOS --version 1.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Xamarin.CustomImageView.iOS, 1.0.2"
#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.
// Install Xamarin.CustomImageView.iOS as a Cake Addin #addin nuget:?package=Xamarin.CustomImageView.iOS&version=1.0.2 // Install Xamarin.CustomImageView.iOS as a Cake Tool #tool nuget:?package=Xamarin.CustomImageView.iOS&version=1.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
ImageLoader
A custom ImageView component for iOS with inteligent Caching, Handle Cache expiry, Automatic Download
Usage:
using Subsystems.Cache.External;
using Subsystems.ImageLoader.External;
using Subsystems.CustomImageViewiOS.External;
....
....
private CMPImageView _imageView1;
private CMPImageView _imageView2;
private CMPCacheProxy _cacheProxy;
private CMPImageLoaderProxy _imageLoaderProxy1;
private CMPImageLoaderProxy _imageLoaderProxy2;
....
....
var baseFolderPathString = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
_cacheProxy = new CMPCacheProxy(baseFolderPathString, 5 * 1024);
_imageLoaderProxy1 = new CMPImageLoaderProxy("https://images-eu.ssl-images-amazon.com/images/I/51L0Rro4T1L._SL100_.jpg",
_cacheProxy);
_imageLoaderProxy2 = new CMPImageLoaderProxy("https://images-eu.ssl-images-amazon.com/images/I/51L0Rro4T1L._SL160_.jpg",
_cacheProxy);
_imageView1 = new CMPImageView(ImageView1, _imageLoaderProxy1);
_imageView1.ExpirySeconds(10);
_imageView2 = new CMPImageView(ImageView2, _imageLoaderProxy2);
_imageView2.ExpirySeconds(10);
....
....
_imageView1.LoadImageAsync();
_imageView2.LoadImageAsync();
Product | Versions Compatible and additional computed target framework versions. |
---|---|
Xamarin.iOS | xamarinios10 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
Xamarin.iOS 1.0
- Newtonsoft.Json (>= 11.0.2)
- Xamarin.CustomCache (>= 1.0.4)
- Xamarin.CustomFileManager (>= 1.0.1)
- Xamarin.HttpConnection (>= 1.0.2)
- Xamarin.ImageLoader (>= 1.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Updated dependent libraries