Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

SwiftUI Image loading and Animation framework powered by SDWebImage

License

NotificationsYou must be signed in to change notification settings

SDWebImage/SDWebImageSwiftUI

Repository files navigation

CI StatusVersionLicensePlatformCarthage compatibleSwiftPM compatiblecodecov

If you support iOS 15+/macOS 12+ only and don't care about animated image format, try SwiftUI'sAsyncImage

What's for

SDWebImageSwiftUI is a SwiftUI image loading framework, which based onSDWebImage.

It brings all your favorite features from SDWebImage, like async image loading, memory/disk caching, animated image playback and performances.

The framework provide the different View structs, which API match the SwiftUI framework guideline. If you're familiar withImage, you'll find it easy to useWebImage andAnimatedImage.

Apple VisionOS

From v3.0.0, SDWebImageSwiftUI can be compiled for visionOS platform. However, due to the lacking package manager support (need tools update), we don't support CocoaPods/SPM yet.

You can only use the Xcode's built-in package manager dependency to build on visionOS.

To run the visionOS example, you need to clone and add bothSDWebImage andSDWebImageSwiftUI, open theSDWebImageSwiftUI.xcworkspace and drag those folders to become local package dependency, see:Editing a package dependency as a local package

If you really want to build framework instead of using Xcode's package dependency, following the manual steps below:

  1. Clone SDWebImage, openSDWebImage.xcodeproj and buildSDWebImage target for visionOS platform (ChangeMACH_O_TYPE to static library if you need)
  2. Clone SDWebImageSwiftUI, create directory atCarthage/Build/visionOS and copySDWebImage.framework into it
  3. OpenSDWebImageSwiftUI.xcodeproj and buildSDWebImageSwiftUI visionOS target

Features

Since SDWebImageSwiftUI is built on top of SDWebImage, it provide both the out-of-box features as well as advanced powerful features you may want in real world Apps. Check ourWiki when you need:

  • Animated Image full-stack solution, with balance of CPU && RAM
  • Progressive image loading, with animation support
  • Reusable download, never request single URL twice
  • URL Request / Response Modifier, provide custom HTTP Header
  • Image Transformer, apply corner radius or CIFilter
  • Multiple caches system, query from different source
  • Multiple loaders system, load from different resource

You can also get all benefits from the existing community around with SDWebImage. You can have massive image format support (GIF/APNG/WebP/HEIF/AVIF/SVG/PDF) viaCoder Plugins, PhotoKit support viaSDWebImagePhotosPlugin, Firebase integration viaFirebaseUI, etc.

Besides all these features, we do optimization for SwiftUI, like Binding, View Modifier, using the same design pattern to become a good SwiftUI citizen.

Version

This framework is under heavily development, it's recommended to usethe latest release as much as possible (including SDWebImage dependency).

This framework followsSemantic Versioning. Each source-break API changes will bump to a major version.

Changelog

This project usekeep a changelog format to record the changes. Check theCHANGELOG.md about the changes between versions. The changes will also be updated in Release page.

Contribution

All issue reports, feature requests, contributions, and GitHub stars are welcomed. Hope for active feedback and promotion if you find this framework useful.

Requirements

  • Xcode 14+
  • iOS 14+
  • macOS 11+
  • tvOS 14+
  • watchOS 7+
  • visionOS 1+

for SwiftUI 1.0 (iOS 13)

iOS 14(macOS 11) introduce the SwiftUI 2.0, which keep the most API compatible, but changes many internal behaviors, which breaks the SDWebImageSwiftUI's function.

From v3.0.0, SDWebImageSwiftUI drop iOS 13 support. To use on iOS 13, checkout the latest v2.x version (or using2.x branch) instead.

for future transition

Since SDWebImage 6.0 will introduce mixed Swift/Objc codebase, this repo will migrate intoSDWebImage Core Repo.

But don't worry, we will use the automatic cross module overlay, whic means, you can use:

import SwiftUIimport SDWebImage

to works like:

import SwiftUIimport SDWebImageimport SDWebImageSwiftUI // <-- Automatic infer this

You will automatically link theSDWebImageSwiftUI, and this library's naming will still be preserved in SPM target. So the transition is smooth for most of you, I don't want to bump another major version.The 3.x is the final version for SDWebImageSwiftUI dedicated repo

Note: For super advanced user, if you using some custom Swift toolchain, be sure to pass-Xfrontend -enable-cross-import-overlays

Installation

Swift Package Manager

SDWebImageSwiftUI is available throughSwift Package Manager.

  • For App integration

For App integration, you should using Xcode 12 or higher, to add this package to your App target. To do this, checkAdding Package Dependencies to Your App about the step by step tutorial using Xcode.

  • For downstream framework

For downstream framework author, you should create aPackage.swift file into your git repo, then add the following line to mark your framework dependent our SDWebImageSwiftUI.

letpackage=Package(    dependencies:[.package(url:"https://github.com/SDWebImage/SDWebImageSwiftUI.git", from:"3.0.0")],)

CocoaPods

SDWebImageSwiftUI is available throughCocoaPods. To installit, simply add the following line to your Podfile:

pod'SDWebImageSwiftUI'

Carthage

SDWebImageSwiftUI is available throughCarthage.

github "SDWebImage/SDWebImageSwiftUI"

Usage

UsingWebImage to load network image

  • Supports placeholder and detail options control for image loading as SDWebImage
  • Supports progressive image loading (like baseline)
  • Supports success/failure/progress changes event for custom handling
  • Supports indicator with activity/progress indicator and customization
  • Supports built-in animation and transition, powered by SwiftUI
  • Supports animated image as well!
varbody:someView{WebImage(url:URL(string:"https://nokiatech.github.io/heif/content/images/ski_jump_1440x960.heic")){ imagein        image.resizable() // Control layout like SwiftUI.AsyncImage, you must use this modifier or the view will use the image bitmap size} placeholder:{Rectangle().foregroundColor(.gray)}    // Supports options and context, like `.delayPlaceholder` to show placeholder only when error.onSuccess{ image, data, cacheTypein        // Success        // Note: Data exist only when queried from disk cache or network. Use `.queryMemoryData` if you really need data}.indicator(.activity) // Activity Indicator.transition(.fade(duration:0.5)) // Fade Transition with duration.scaledToFit().frame(width:300, height:300, alignment:.center)}

Note: ThisWebImage usingImage for internal implementation, which is the best compatible for SwiftUI layout and animation system. But unlike SwiftUI'sImage which does not support animated image or vector image,WebImage supports animated image as well (by defaults from v2.0.0).

However, TheWebImage animation provide simple common use case, so it's still recommend to useAnimatedImage for advanced controls like progressive animation rendering, or vector image rendering.

@StatevarisAnimating:Bool=truevarbody:someView{WebImage(url:URL(string:"https://raw.githubusercontent.com/liyong03/YLGIFImage/master/YLGIFImageDemo/YLGIFImageDemo/joy.gif"), isAnimating: $isAnimating)) // Animation Control, supports dynamic changes    // The initial value of binding should be true.customLoopCount(1) // Custom loop count.playbackRate(2.0) // Playback speed rate.playbackMode(.bounce) // Playback normally to the end, then reversely back to the start    // `WebImage` supports advanced control just like `AnimatedImage`, but without the progressive animation support}

Note: For indicator, you can custom your own as well. For example, iOS 14/watchOS 7 introduce the newProgressView, which can be easily used via:

WebImage(url: url).indicator(.activity)

or you can just write like:

WebImage(url: url).indicator{Indicator{ _, _inProgressView()}}

UsingAnimatedImage to play animation

  • Supports network image as well as local data and bundle image
  • Supports animated image format as well as vector image format
  • Supports animated progressive image loading (like web browser)
  • Supports animation control using the SwiftUI Binding
  • Supports indicator and transition, powered by SDWebImage and Core Animation
  • Supports advanced control like loop count, playback rate, buffer size, runloop mode, etc
  • Supports coordinate with native UIKit/AppKit view
varbody:someView{Group{AnimatedImage(url:URL(string:"https://raw.githubusercontent.com/liyong03/YLGIFImage/master/YLGIFImageDemo/YLGIFImageDemo/joy.gif"), placeholderImage:.init(systemName:"photo")) // Placeholder Image        // Supports options and context, like `.progressiveLoad` for progressive animation loading.onFailure{ errorin            // Error}.resizable() // Resizable like SwiftUI.Image, you must use this modifier or the view will use the image bitmap size.indicator(.activity) // Activity Indicator.transition(.fade) // Fade Transition.scaledToFit() // Attention to call it on AnimatedImage, but not `some View` after View Modifier (Swift Protocol Extension method is static dispatched)                // Supports SwiftUI ViewBuilder placeholder as wellAnimatedImage(url: url){Circle().foregroundColor(.gray)}                // DataAnimatedImage(data:try!Data(contentsOf:URL(fileURLWithPath:"/tmp/foo.webp"))).customLoopCount(1) // Custom loop count.playbackRate(2.0) // Playback speed rate                // Bundle (not Asset Catalog)AnimatedImage(name:"animation1.gif", isAnimating: $isAnimating) // Animation control binding.maxBufferSize(.max).onViewUpdate{ view, contextin // Advanced native view coordinate            // AppKit tooltip for mouse hover            view.toolTip="Mouseover Tip"            // UIKit advanced content mode            view.contentMode=.topLeft            // Coordinator, used for Cocoa Binding or Delegate methodletcoordinator= context.coordinator}}}

Note:AnimatedImage supports both image url or image data for animated image format. Which use the SDWebImage'sAnimated ImageView for internal implementation. Pay attention that since this base on UIKit/AppKit representable, some advanced SwiftUI layout and animation system may not work as expected. You may need UIKit/AppKit and Core Animation to modify the native view.

Note:AnimatedImage some methods like.transition,.indicator and.aspectRatio have the same naming asSwiftUI.View protocol methods. But the args receive the different type. This is becauseAnimatedImage supports to be used with UIKit/AppKit component and animation. If you find ambiguity, use full type declaration instead of the dot expression syntax.

Note: some of methods onAnimatedImage will returnsome View, a new Modified Content. You'll lose the type related modifier method. For this case, you can either reorder the method call, or use native view (actuallySDAnimatedImageView) in.onViewUpdate, use UIKIt/AppKit API for rescue.

// Using UIKit componentsvarbody:someView{AnimatedImage(name:"animation2.gif").indicator(SDWebImageProgressIndicator.default) // UIKit indicator component.transition(SDWebImageTransition.flipFromLeft) // UIKit animation transition}// Using SwiftUI componentsvarbody:someView{AnimatedImage(name:"animation2.gif").indicator(Indicator.progress) // SwiftUI indicator component.transition(AnyTransition.flipFromLeft) // SwiftUI animation transition}

Which View to choose

Why we have two different View types here, is because of current SwiftUI limit. But we're aimed to provide best solution for all use cases.

If you don't need animated image, prefer to useWebImage firstly. Which behaves the seamless as built-in SwiftUI View. If SwiftUI works, it works. If SwiftUI doesn't work, it either :)

If you need simple animated image, useWebImage. Which provide the basic animated image support. But it does not support progressive animation rendering, nor vector image, if you don't care about this.

If you need powerful animated image,AnimatedImage is the one to choose. Remember it supports static image as well, you don't need to check the format, just use as it. Also, some powerful feature like UIKit/AppKit tint color, vector image, symbol image configuration, tvOS layered image, only available inAnimatedImage but not currently in SwfitUI.

But, becauseAnimatedImage useUIViewRepresentable and driven by UIKit, currently there may be some small incompatible issues between UIKit and SwiftUI layout and animation system, or bugs related to SwiftUI itself. We try our best to match SwiftUI behavior, and provide the same API asWebImage, which make it easy to switch between these two types if needed.

UseImageManager for your own View type

TheImageManager is a class which conforms to Combine'sObservableObject protocol. Which is the core fetching data source ofWebImage we provided.

For advanced use case, like loading image into the complicated View graph which you don't want to useWebImage. You can directly bind your own View type with the Manager.

It looks familiar likeSDWebImageManager, but it's built for SwiftUI world, which provide the Source of Truth for loading images. You'd better use SwiftUI's@ObservedObject to bind each single manager instance for your View instance, which automatically update your View's body when image status changed.

structMyView:View{@ObservedObjectvarimageManager=ImageManager()varbody:someView{        // Your custom complicated view graphGroup{if imageManager.image!=nil{Image(uiImage: imageManager.image!)}else{Rectangle().fill(Color.gray)}}        // Trigger image loading when appear.onAppear{self.imageManager.load(url: url)}        // Cancel image loading when disappear.onDisappear{self.imageManager.cancel()}}}

Customization and configuration setup

This framework is based on SDWebImage, which supports advanced customization and configuration to meet different users' demand.

You can register multiple coder plugins for external image format. You can register multiple caches (different paths and config), multiple loaders (URLSession and Photos URLs). You can control the cache expiration date, size, download priority, etc. All in ourwiki.

The best place to put these setup code for SwiftUI App, it's theAppDelegate.swift:

func application(_ application:UIApplication, didFinishLaunchingWithOptions launchOptions:[UIApplication.LaunchOptionsKey:Any]?)->Bool{    // Add WebP/SVG/PDF supportSDImageCodersManager.shared.addCoder(SDImageWebPCoder.shared)SDImageCodersManager.shared.addCoder(SDImageAVIFCoder.shared)SDImageCodersManager.shared.addCoder(SDImageSVGCoder.shared)SDImageCodersManager.shared.addCoder(SDImagePDFCoder.shared)        // Add default HTTP headerSDWebImageDownloader.shared.setValue("image/webp,image/apng,image/*,*/*;q=0.8", forHTTPHeaderField:"Accept")        // Add multiple cachesletcache=SDImageCache(namespace:"tiny")    cache.config.maxMemoryCost=100*1024*1024 // 100MB memory    cache.config.maxDiskSize=50*1024*1024 // 50MB diskSDImageCachesManager.shared.addCache(cache)SDWebImageManager.defaultImageCache=SDImageCachesManager.shared        // Add multiple loaders with Photos Asset supportSDImageLoadersManager.shared.addLoader(SDImagePhotosLoader.shared)SDWebImageManager.defaultImageLoader=SDImageLoadersManager.sharedreturntrue}

For more information, it's really recommended to check our demo, to learn detailed API usage. You can also have a check at the latest API documentation, for advanced usage.

Documentation

FAQ

Common Problems

Using WebImage/AnimatedImage in List/LazyStack/LazyGrid and ForEach

SwiftUI has a known behavior(bug?) when using stateful view inList/LazyStack/LazyGrid.Only theTop Level view can hold its own@State/@StateObject, but the sub structure will lose state when scroll out of screen.However, WebImage/Animated is both stateful. To ensure the state keep in sync even when scroll out of screen. you may use some tricks.

See more:https://twitter.com/fatbobman/status/1572507700436807683?s=21&t=z4FkAWTMvjsgL-wKdJGreQ

In short, it's not recommanded to do so:

structContentView{@StatevarimageURLs:[String]varbody:someView{List{ForEach(imageURLs, id: \.self){ urlinVStack{WebImage(url) // The top level is `VStack`}}}}}

instead, using this approach:

structContentView{structBodyView{@Statevarurl:Stringvarbody:someView{VStack{WebImage(url)}}}@StatevarimageURLs:[String]varbody:someView{List{ForEach(imageURLs, id: \.self){ urlinBodyView(url: url)}}}}

Using Image/WebImage/AnimatedImage in Button/NavigationLink

SwiftUI'sButton apply overlay to its content (exceptText) by default, this is common mistake to write code like this, which cause strange behavior:

// WrongButton(action:{    // Clicked}){WebImage(url: url)}// NavigationLink create Button implicitlyNavigationView{NavigationLink(destination:Text("Detail view here")){WebImage(url: url)}}

Instead, you must override the.buttonStyle to use the plain style, or the.renderingMode to use original mode. You can also use the.onTapGesture modifier for touch handling. SeeHow to disable the overlay color for images inside Button and NavigationLink

// CorrectButton(action:{    // Clicked}){WebImage(url: url)}.buttonStyle(PlainButtonStyle())// OrNavigationView{NavigationLink(destination:Text("Detail view here")){WebImage(url: url).renderingMode(.original)}}

Render vector image (SVG/PDF) with tint color

BothWebImage/AnimatedImage supports to render the vector image, by using theSVG/PDF external coders. However they are different internally.

  • AnimatedImage: use tech from Apple's symbol image and vector drawing, supports dynamic size changes without lossing details. And it use UIKit/AppKit based implementation and APIs. If you want, pass.context(.imageThumbnailPixelSize: size) to use bitmap rendering and get more pixels.
  • WebImage: draws vector image into a bitmap version. Which just like normal PNG. By default, we use vector image content size (SVG canvas size or PDF media box size). If you want, pass.context(.imageThumbnailPixelSize: size) to get more pixels.

For bitmap rendering, you can also tint the SVG/PDF icons with custom colors (like symbol images), use the.renderingMode(.template) and.tint(:) or.foregroundColor(:) modifier, which matchesSwiftUI.Image behavior.

  • WebImage
varbody:someView{WebImage(url:URL(string:"https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/w3c.svg")).resizable().renderingMode(.template).foregroundColor(.red) // or `.tint(:)`, `.accentColor(:)`.scaledToFit()}
  • AnimatedImage
varbody:someView{AnimatedImage(url:URL(string:"https://dev.w3.org/SVG/tools/svgweb/samples/svg-files/w3c.svg"), context:[.imageThumbnailPixelSize:CGSize(width:100, height:100)]).resizable().renderingMode(.template)    // seems `.foregroundColor(:)` does effect `UIView.tintColor`, use `tint(:)` or `.accentColor(:)` instead.    // Or you can use `onViewCreate(:)` to get native `SDAnimatedImageView` and set `tintColor` (AppKit use `contentTintColor`).tint(.red).scaledToFit()}

See more:Configuring and displaying symbol images in your UI

Using with external loaders/caches/coders

SDWebImage itself, supports many custom loaders (likeFirebase Storage andPhotosKit), caches (likeYYCache andPINCache), and coders (likeWebP andAVIF, evenLottie).

Here is the tutorial to setup these external components with SwiftUI environment.

Setup external SDKs

You can put the setup code inside your SwiftUIApp.init() method.

@mainstructMyApp:App{init(){        // Custom Firebase Storage LoaderFirebaseApp.configure()SDImageLoadersManager.shared.loaders=[FirebaseUI.StorageImageLoader.shared]SDWebImageManager.defaultImageLoader=SDImageLoadersManager.shared        // WebP supportSDImageCodersManager.shared.addCoder(SDImageWebPCoder.shared)        // AVIF supportSDImageCodersManager.shared.addCoder(SDImageAVIFCoder.shared)}varbody:someScene{WindowGroup{ContentView()}}}

or, if your App have complicatedAppDelegate class, put setup code there:

classAppDelegate:NSObject,UIApplicationDelegate{func application(_ application:UIApplication, didFinishLaunchingWithOptions launchOptions:[UIApplication.LaunchOptionsKey:Any]?=nil)->Bool{SDImageCachesManager.shared.caches=[YYCache(name:"default")]SDWebImageManager.defaultImageCache=SDImageCachesManager.sharedreturntrue}}@mainstructMyApp:App{@UIApplicationDelegateAdaptor(AppDelegate.self)varappDelegatevarbody:someScene{WindowGroup{ContentView()}}}
Use external SDKs

For some of custom loaders, you need to create theURL struct with some special APIs, so that SDWebImage can retrieve the context from other SDKs, like:

  • FirebaseStorage
letstorageRef:StorageReferenceletstorageURL=NSURL.sd_URL(with: storageRef)asURL?// Or via convenience extensionletstorageURL= storageRef.sd_URLRepresentation
  • PhotosKit
letasset:PHAssetletphotosURL=NSURL.sd_URL(with: asset)asURL?// Or via convenience extensionletphotosURL= asset.sd_URLRepresentation

For some of custom coders, you need to request the image with some options to control the behavior, like Vector Images SVG/PDF. Because SwiftUI.Image or WebImage does not supports vector graph at all.

  • SVG/PDF Coder
letvectorURL:URL? // URL to SVG or PDFWebImage(url: vectorURL, context:[.imageThumbnailPixelSize:CGSize(width:100, height:100)])
  • Lottie Coder
letlottieURL:URL? // URL to Lottie.jsonWebImage(url: lottieURL, isAnimating: $isAnimating)

For caches, you actually don't need to worry about anything. It just works after setup.

Using for backward deployment and weak linking SwiftUI

SDWebImageSwiftUI supports to use when your App Target has a deployment target version less than iOS 14/macOS 11/tvOS 14/watchOS 7. Which will weak linking of SwiftUI(Combine) to allows writing code with available check at runtime.

To use backward deployment, you have to do the follow things:

Add weak linking framework

Add-weak_framework SwiftUI -weak_framework Combine in your App Target'sOther Linker Flags build setting. You can also do this using Xcode'sOptional Framework checkbox, there have the same effect.

You should notice that all the third party SwiftUI frameworks should have this build setting as well, not only just SDWebImageSwiftUI. Or when running on iOS 12 device, it will trigger the runtime dyld error on startup.

Backward deployment on iOS 12.1-

For deployment target version below iOS 12.2 (The first version which Swift 5 Runtime bundled in iOS system), you have to change the min deployment target version of SDWebImageSwiftUI. This may take some side effect on compiler's optimization and trigger massive warnings for some frameworks.

However, for iOS 12.2+, you can still keep the min deployment target version to iOS 14, no extra warnings or performance slow down for iOS 14 client.

Because Swift use the min deployment target version to detect whether to link the App bundled Swift runtime, or the System built-in one (/usr/lib/swift/libswiftCore.dylib).

  • For CocoaPods user, you can change the min deployment target version in the Podfile via post installer:
post_installdo |installer|installer.pods_project.targets.eachdo |target|target.build_configurations.eachdo |config|config.build_settings['IPHONEOS_DEPLOYMENT_TARGET']='11.0'# version you needendendend
  • For Carthage user, you can usecarthage update --no-build to download the dependency, then change the Xcode Project's deployment target version and build the binary framework.

  • For SwiftPM user, you have to use the local dependency (with the Git submodule) to change the deployment target version.

Backward deployment on iOS 12.2+
  • For Carthage user, the built binary framework will useLibrary Evolution to support for backward deployment.

  • For CocoaPods user, you can skip the platform version validation in Podfile with:

platform:ios,'14.0'# This does not effect your App Target's deployment target version, just a hint for CocoaPods
  • For SwiftPM user, SwiftPM does not support weak linking nor Library Evolution, so it can not deployment to iOS 12+ user without changing the min deployment target.
Add available annotation

Addall the SwiftUI code with the available annotation and runtime check, like this:

// AppDelegate.swiftfunc application(_ application:UIApplication, didFinishLaunchingWithOptions launchOptions:[UIApplication.LaunchOptionsKey:Any]?)->Bool{    // ...if #available(iOS14,*){        window.rootViewController=UIHostingController(rootView:ContentView())}else{        window.rootViewController=ViewController()}    // ...}// ViewController.swiftclassViewController:UIViewController{varlabel:UILabel=UILabel()overridefunc viewDidLoad(){        super.viewDidLoad()        view.backgroundColor=.white        view.addSubview(label)        label.text="Hello World iOS 12!"        label.sizeToFit()        label.center= view.center}}// ContentView.swift@available(iOS14.0, macOS11.0, tvOS14.0, watchOS7.0,*)structContentView:View{varbody:someView{Group{Text("Hello World iOS 14!")WebImage(url:URL(string:"https://i.loli.net/2019/09/24/rX2RkVWeGKIuJvc.jpg"))}}}

Demo

To run the example using SwiftUI, following the steps:

  1. OpenSDWebImageSwiftUI.xcworkspace, wait for SwiftPM finishing downloading the test dependency.
  2. ChooseSDWebImageSwiftUIDemo (or other platforms) scheme and run the demo application.

Note: ThePodfile here is because history we use CocoaPods to integrate libs into Demo, but now we use SPM.

Since SwiftUI is aimed to support all Apple platforms, our demo does this as well, one codebase including:

  • iOS (iPhone/iPad/Mac Catalyst)
  • macOS
  • tvOS
  • watchOS
  • visionOS

Demo Tips:

  1. UseSwitch (right-click on macOS/tap on watchOS) to switch betweenWebImage andAnimatedImage.
  2. UseReload (right-click on macOS/button on watchOS) to clear cache.
  3. UseSwipe Left (menu button on tvOS) to delete one image url from list.
  4. Pinch gesture (Digital Crown on watchOS, play button on tvOS) to zoom-in detail page image.
  5. Clear cache and go to detail page to see progressive loading.

Test

SDWebImageSwiftUI has Unit Test to increase code quality. For SwiftUI, there are no official Unit Test solution provided by Apple.

However, since SwiftUI is State-Based and Attributed-Implemented layout system, there are open source projects who provide the solution:

  • ViewInspector: Inspect View's runtime attribute value (like.frame modifier,.image value). We use this to testAnimatedImage andWebImage. It also allows the inspect to native UIView/NSView.

To run the test:

  1. Runpod install on root directory to install the dependency.
  2. OpenSDWebImageSwiftUI.xcworkspace, wait for SwiftPM finishing downloading the test dependency.
  3. ChooseSDWebImageSwiftUITests scheme and start testing.

We've already setup the CI pipeline, each PR will run the test case and upload the test report tocodecov.

Screenshot

  • iOS Demo

  • macOS Demo

  • tvOS Demo

  • watchOS Demo

Extra Notes

Besides all above things, this project can also ensure the following function available on Swift platform for SDWebImage itself.

  • SwiftUI compatibility
  • Swift Package Manager integration
  • Swift source code compatibility and Swifty

Which means, this project is one core use case and downstream dependency, which driven SDWebImage itself future development.

Author

DreamPiggy

Thanks

License

SDWebImageSwiftUI is available under the MIT license. See the LICENSE file for more info.


[8]ページ先頭

©2009-2025 Movatter.jp