https://github.com/trinnguyen/sdwebimage-xamarin
SDWebImage binding for Net 7 for iOS (aka Xamarin.iOS), support Xcode 15 and iOS 17
https://github.com/trinnguyen/sdwebimage-xamarin
Last synced: 2 months ago
JSON representation
SDWebImage binding for Net 7 for iOS (aka Xamarin.iOS), support Xcode 15 and iOS 17
- Host: GitHub
- URL: https://github.com/trinnguyen/sdwebimage-xamarin
- Owner: trinnguyen
- Created: 2023-09-25T15:08:51.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-25T15:26:27.000Z (over 1 year ago)
- Last Synced: 2025-01-21T07:24:57.189Z (3 months ago)
- Language: Makefile
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Xamarin.iOS binding for SDWebImage
[](https://badge.fury.io/nu/Tnn.SDWebImage)
- Native library: [SDWebImage](https://github.com/SDWebImage/SDWebImage)
**Support Net 7.0 for iOS (works with Xcode 15 and iOS 17)**
## Nuget
* `Install-Package Tnn.SDWebImage`
*## Build
* `make`
* Output: `bin/Release/net7.0-ios/SDWebImage-Xamarin.dll`## Usage
```csharp
using SDWebImageXamarin;// Creeate imageView or loaded from XIB
var imageView = new UIImageView();// Download or usage cached image by url
imageView.SetImage(NSUrl.FromString(url));
```## Contribution
Only 2 methods available on Xamarin.iOS to load the image from URL. Contribution to [ApiDefinition.cs](ApiDefinition.cs) are welcome, just send PRs.