基于SDWebImage的SwiftUI图像加载框架 支持异步缓存与动画
SDWebImageSwiftUI是基于SDWebImage的SwiftUI图像加载框架。该框架提供异步图像加载、内存/磁盘缓存和动画图像播放功能。它包含WebImage和AnimatedImage等符合SwiftUI设计的API,支持占位图、加载选项、进度指示和过渡动画。SDWebImageSwiftUI针对SwiftUI进行了优化,适用于iOS 14+、macOS 11+等平台,为SwiftUI应用提供完整的图像处理方案。
If you support iOS 15+/macOS 12+ only and don't care about animated image format, try SwiftUI's AsyncImage
SDWebImageSwiftUI is a SwiftUI image loading framework, which based on SDWebImage.
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 with Image
, you'll find it easy to use WebImage
and AnimatedImage
.
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 both SDWebImage
and SDWebImageSwiftUI
, open the SDWebImageSwiftUI.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:
SDWebImage.xcodeproj
and build SDWebImage
target for visionOS platform (Change MACH_O_TYPE
to static library if you need)Carthage/Build/visionOS
and copy SDWebImage.framework
into itSDWebImageSwiftUI.xcodeproj
and build SDWebImageSwiftUI visionOS
targetSince 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 our Wiki when you need:
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) via Coder Plugins, PhotoKit support via SDWebImagePhotosPlugin, Firebase integration via FirebaseUI, 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.
This framework is under heavily development, it's recommended to use the latest release as much as possible (including SDWebImage dependency).
This framework follows Semantic Versioning. Each source-break API changes will bump to a major version.
This project use keep a changelog format to record the changes. Check the CHANGELOG.md about the changes between versions. The changes will also be updated in Release page.
All issue reports, feature requests, contributions, and GitHub stars are welcomed. Hope for active feedback and promotion if you find this framework useful.
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 using 2.x branch) instead.
Since SDWebImage 6.0 will introduce mixed Swift/Objc codebase, this repo will migrate into SDWebImage Core Repo.
But don't worry, we will use the automatic cross module overlay, whic means, you can use:
import SwiftUI import SDWebImage
to works like:
import SwiftUI
import SDWebImage
import SDWebImageSwiftUI // <-- Automatic infer this
You will automatically link the SDWebImageSwiftUI
, 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
SDWebImageSwiftUI is available through Swift Package Manager.
For App integration, you should using Xcode 12 or higher, to add this package to your App target. To do this, check Adding Package Dependencies to Your App about the step by step tutorial using Xcode.
For downstream framework author, you should create a Package.swift
file into your git repo, then add the following line to mark your framework dependent our SDWebImageSwiftUI.
let package = Package( dependencies: [ .package(url: "https://github.com/SDWebImage/SDWebImageSwiftUI.git", from: "3.0.0") ], )
SDWebImageSwiftUI is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'SDWebImageSwiftUI'
SDWebImageSwiftUI is available through Carthage.
github "SDWebImage/SDWebImageSwiftUI"
WebImage
to load network imagevar body: some View { WebImage(url: URL(string: "https://nokiatech.github.io/heif/content/images/ski_jump_1440x960.heic")) { image in 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, cacheType in // 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: This WebImage
using Image
for internal implementation, which is the best compatible for SwiftUI layout and animation system. But unlike SwiftUI's Image
which does not support animated image or vector image, WebImage
supports animated image as well (by defaults from v2.0.0).
However, The WebImage
animation provide simple common use case, so it's still recommend to use AnimatedImage
for advanced controls like progressive animation rendering, or vector image rendering.
@State var isAnimating: Bool = true var body: some View { 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 new ProgressView
, which can be easily used via:
WebImage(url: url) .indicator(.activity)
or you can just write like:
WebImage(url: url) .indicator { Indicator { _, _ in ProgressView() } }
AnimatedImage
to play animationvar body: some View { 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 { error in // 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 well AnimatedImage(url: url) { Circle().foregroundColor(.gray) } // Data AnimatedImage(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, context in // 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 method let coordinator = context.coordinator } } }
Note: AnimatedImage
supports both image url or image data for animated image format. Which use the SDWebImage's Animated 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 as SwiftUI.View
protocol methods. But the args receive the different type. This is because AnimatedImage
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 on AnimatedImage
will return some 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 (actually SDAnimatedImageView
) in .onViewUpdate
, use UIKIt/AppKit API for rescue.
// Using UIKit components var body: some View { AnimatedImage(name: "animation2.gif") .indicator(SDWebImageProgressIndicator.default) // UIKit indicator component .transition(SDWebImageTransition.flipFromLeft) // UIKit animation transition } // Using SwiftUI components var body: some View { AnimatedImage(name: "animation2.gif") .indicator(Indicator.progress) // SwiftUI indicator component .transition(AnyTransition.flipFromLeft) // SwiftUI animation transition }
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 use WebImage
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, use WebImage
. 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 in AnimatedImage
but not currently in SwfitUI.
But, because AnimatedImage
use UIViewRepresentable
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 as WebImage
, which make it easy to switch between these two types if needed.
ImageManager
for your own View typeThe ImageManager
is a class which conforms to Combine's ObservableObject protocol. Which is the core fetching data source of WebImage
we provided.
For advanced use case, like loading image into the complicated View graph which you don't want to use WebImage
. You can directly bind your own View type with the Manager.
It looks familiar like SDWebImageManager
, 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.
struct MyView : View { @ObservedObject var imageManager = ImageManager() var body: some View { // Your custom complicated view graph Group { 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() } } }
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 our wiki.
The best place to put these setup code
AI辅助编程,代码自动修复
Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。
AI小说写作助手,一站式润色、改写、扩写
蛙蛙写作—国内先进的AI写作平台,涵盖小说、学术、社交媒体等多场景。提供续写、改写、润色等功能,助力创作者高效优化写作流程。界面简洁,功能全面,适合各类写作者提升内容品质和工作效率。
全能AI智能助手,随时解答生活与工作的多样问题
问小白,由元石科技研发的AI智能助手,快速准确地解答各种生活和工作问题,包括但不限于搜索、规划和社交互动,帮助用户在日常生活中提高效率,轻松管理个人事务。
实时语音翻译/同声传译工具
Transly是一个多场景的AI大语言模型驱动的同声传译、专业翻译助手,它拥有超精准的音频识别翻译能力,几乎零延迟的使用体验和支持多国语言可以让你带它走遍全球,无论你是留学生、商务人士、韩剧美剧爱好者,还是出国游玩、多国会议、跨国追星等等,都可以满足你所有需要同传的场景需求,线上线下通用,扫除语言障碍,让全世界的语言交流不再有国界。
一键生成PPT和Word,让学习生活更轻松
讯飞智文是一个利用 AI 技术的项目,能够帮助用户生成 PPT 以及各类文档。无论是商业领域的市场分析报告、年度目标制定,还是学生群体的职业生涯规划、实习避坑指南,亦或是活动策划、旅游攻略等内容,它都能提供支持,帮助用户精准表达,轻松呈现各种信息。
深度推理能力全新升级,全面对标OpenAI o1
科大讯飞的星火大模型,支持语言理解、知识问答和文本创作等多功能,适用于多种文件和业务场景,提升办公和日常生活的效率。讯飞星火是一个提供丰富智能服务的平台,涵盖科技资讯、图像创作、写作辅助、编程解答、科研文献解读等功能,能为不同需求的用户提供便捷高效的帮助,助力用户轻松获取信息、解决问题,满足多样化使用场景。
一种基于大语言模型的高效单流解耦语音令牌文本到语音合成模型
Spark-TTS 是一个基于 PyTorch 的开源文本到语音合成项目,由多个知名机构联合参与。该项目提供了高效的 LLM(大语言模型)驱动的语音合成方案,支持语音克隆和语音创建功能,可通过命令行界面(CLI)和 Web UI 两种方式使用。用户可以根据需求调整语音的性 别、音高、速度等参数,生成高质量的语音。该项目适用于多种场景,如有声读物制作、智能语音助手开发等。
AI助力,做PPT更简单!
咔片是一款轻量化在线演示设计工具,借助 AI 技术,实现从内容生成到智能设计的一站式 PPT 制作服务。支持多种文档格式导入生成 PPT,提供海量模板、智能美化、素材替换等功能,适用于销售、教师、学生等各类人群,能高效制作出高品质 PPT,满足不同场景演示需求。
选题、配图、成文,一站式创作,让内容运营更高效
讯飞绘文,一个AI集成平台,支持写作、选题、配图、排版和发布。高效生成适用于各类媒体的定制内容,加速品牌传播,提升内容营销效果。
专业的AI公文写作平台,公文写作神器
AI 材料星,专业的 AI 公文写作辅助平台,为体制内工作人员提供高效的公文写作解决方案。拥有海量公文文库、9 大核心 AI 功能,支持 30 + 文稿类型生成,助力快速完成领导讲话、工作总结、述职报告等材料,提升办公效率,是体制打工人的得力写作神器。
最新AI工具、AI资讯
独家AI资源、AI项目落地
微信扫一扫关注公众号