<p align="center" >
<img src="https://raw.githubusercontent.com/SDWebImage/SDWebImage/master/SDWebImage_logo.png" title="SDWebImage logo" float=left>
</p>
[![Build Status](http://img.shields.io/travis/SDWebImage/SDWebImage/master.svg?style=flat)](https://travis-ci.org/SDWebImage/SDWebImage)
[![Pod Version](http://img.shields.io/cocoapods/v/SDWebImage.svg?style=flat)](http://cocoadocs.org/docsets/SDWebImage/)
[![Pod Platform](http://img.shields.io/cocoapods/p/SDWebImage.svg?style=flat)](http://cocoadocs.org/docsets/SDWebImage/)
[![Pod License](http://img.shields.io/cocoapods/l/SDWebImage.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0.html)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-brightgreen.svg)](https://github.com/SDWebImage/SDWebImage)
[![SwiftPM compatible](https://img.shields.io/badge/SwiftPM-compatible-brightgreen.svg)](https://swift.org/package-manager/)
[![Mac Catalyst compatible](https://img.shields.io/badge/Catalyst-compatible-brightgreen.svg)](https://developer.apple.com/documentation/xcode/creating_a_mac_version_of_your_ipad_app/)
[![codecov](https://codecov.io/gh/SDWebImage/SDWebImage/branch/master/graph/badge.svg)](https://codecov.io/gh/SDWebImage/SDWebImage)
This library provides an async image downloader with cache support. For convenience, we added categories for UI elements like `UIImageView`, `UIButton`, `MKAnnotationView`.
## Features
- [x] Categories for `UIImageView`, `UIButton`, `MKAnnotationView` adding web image and cache management
- [x] An asynchronous image downloader
- [x] An asynchronous memory + disk image caching with automatic cache expiration handling
- [x] A background image decompression to avoid frame rate drop
- [x] [Progressive image loading](https://github.com/SDWebImage/SDWebImage/wiki/Advanced-Usage#progressive-animation) (including animated image, like GIF showing in Web browser)
- [x] [Thumbnail image decoding](https://github.com/SDWebImage/SDWebImage/wiki/Advanced-Usage#thumbnail-decoding-550) to save CPU && Memory for large images
- [x] [Extendable image coder](https://github.com/SDWebImage/SDWebImage/wiki/Advanced-Usage#custom-coder-420) to support massive image format, like WebP
- [x] [Full-stack solution for animated images](https://github.com/SDWebImage/SDWebImage/wiki/Advanced-Usage#animated-image-50) which keep a balance between CPU && Memory
- [x] [Customizable and composable transformations](https://github.com/SDWebImage/SDWebImage/wiki/Advanced-Usage#transformer-50) can be applied to the images right after download
- [x] [Customizable and multiple caches system](https://github.com/SDWebImage/SDWebImage/wiki/Advanced-Usage#custom-cache-50)
- [x] [Customizable and multiple loaders system](https://github.com/SDWebImage/SDWebImage/wiki/Advanced-Usage#custom-loader-50) to expand the capabilities, like [Photos Library](https://github.com/SDWebImage/SDWebImagePhotosPlugin)
- [x] [Image loading indicators](https://github.com/SDWebImage/SDWebImage/wiki/How-to-use#use-view-indicator-50)
- [x] [Image loading transition animation](https://github.com/SDWebImage/SDWebImage/wiki/Advanced-Usage#image-transition-430)
- [x] A guarantee that the same URL won't be downloaded several times
- [x] A guarantee that bogus URLs won't be retried again and again
- [x] A guarantee that main thread will never be blocked
- [x] Modern Objective-C and better Swift support
- [x] Performances!
## Supported Image Formats
- Image formats supported by Apple system (JPEG, PNG, TIFF, BMP, ...), including [GIF](https://github.com/SDWebImage/SDWebImage/wiki/Advanced-Usage#gif-coder)/[APNG](https://github.com/SDWebImage/SDWebImage/wiki/Advanced-Usage#apng-coder) animated image
- HEIC format from iOS 11/macOS 10.13, including animated HEIC from iOS 13/macOS 10.15 via [SDWebImageHEICCoder](https://github.com/SDWebImage/SDWebImage/wiki/Advanced-Usage#heic-coder). For lower firmware, use coder plugin [SDWebImageHEIFCoder](https://github.com/SDWebImage/SDWebImageHEIFCoder)
- WebP format from iOS 14/macOS 11.0 via [SDWebImageAWebPCoder](https://github.com/SDWebImage/SDWebImage/wiki/Advanced-Usage#awebp-coder). For lower firmware, use coder plugin [SDWebImageWebPCoder](https://github.com/SDWebImage/SDWebImageWebPCoder)
- Support extendable coder plugins for new image formats like BPG, AVIF. And vector format like PDF, SVG. See all the list in [Image coder plugin List](https://github.com/SDWebImage/SDWebImage/wiki/Coder-Plugin-List)
## Additional modules and Ecosystem
In order to keep SDWebImage focused and limited to the core features, but also allow extensibility and custom behaviors, during the 5.0 refactoring we focused on modularizing the library.
As such, we have moved/built new modules to [SDWebImage org](https://github.com/SDWebImage).
#### SwiftUI
[SwiftUI](https://developer.apple.com/xcode/swiftui/) is an innovative UI framework written in Swift to build user interfaces across all Apple platforms.
We support SwiftUI by building a brand new framework called [SDWebImageSwiftUI](https://github.com/SDWebImage/SDWebImageSwiftUI), which is built on top of SDWebImage core functions (caching, loading and animation).
The new framework introduce two View structs `WebImage` and `AnimatedImage` for SwiftUI world, `ImageIndicator` modifier for any View, `ImageManager` observable object for data source. Supports iOS 13+/macOS 10.15+/tvOS 13+/watchOS 6+ and Swift 5.1. Have a nice try and provide feedback!
#### Coders for additional image formats
- [SDWebImageWebPCoder](https://github.com/SDWebImage/SDWebImageWebPCoder) - coder for WebP format. iOS 8+/macOS 10.10+. Based on [libwebp](https://chromium.googlesource.com/webm/libwebp)
- [SDWebImageHEIFCoder](https://github.com/SDWebImage/SDWebImageHEIFCoder) - coder for HEIF format, iOS 8+/macOS 10.10+ support. Based on [libheif](https://github.com/strukturag/libheif)
- [SDWebImageBPGCoder](https://github.com/SDWebImage/SDWebImageBPGCoder) - coder for BPG format. Based on [libbpg](https://github.com/mirrorer/libbpg)
- [SDWebImageFLIFCoder](https://github.com/SDWebImage/SDWebImageFLIFCoder) - coder for FLIF format. Based on [libflif](https://github.com/FLIF-hub/FLIF)
- [SDWebImageAVIFCoder](https://github.com/SDWebImage/SDWebImageAVIFCoder) - coder for AVIF (AV1-based) format. Based on [libavif](https://github.com/AOMediaCodec/libavif)
- [SDWebImagePDFCoder](https://github.com/SDWebImage/SDWebImagePDFCoder) - coder for PDF vector format. Using built-in frameworks
- [SDWebImageSVGCoder](https://github.com/SDWebImage/SDWebImageSVGCoder) - coder for SVG vector format. Using built-in frameworks
- [SDWebImageLottieCoder](https://github.com/SDWebImage/SDWebImageLottieCoder) - coder for Lottie animation format. Based on [rlottie](https://github.com/Samsung/rlottie)
- and more from community!
#### Custom Caches
- [SDWebImageYYPlugin](https://github.com/SDWebImage/SDWebImageYYPlugin) - plugin to support caching images with [YYCache](https://github.com/ibireme/YYCache)
- [SDWebImagePINPlugin](https://github.com/SDWebImage/SDWebImagePINPlugin) - plugin to support caching images with [PINCache](https://github.com/pinterest/PINCache)
#### Custom Loaders
- [SDWebImagePhotosPlugin](https://github.com/SDWebImage/SDWebImagePhotosPlugin) - plugin to support loading images from Photos (using `Photos.framework`)
- [SDWebImageLinkPlugin](https://github.com/SDWebImage/SDWebImageLinkPlugin) - plugin to support loading images from rich link url, as well as `LPLinkView` (using `LinkPresentation.framework`)
#### Integration with 3rd party libraries
- [SDWebImageLottiePlugin](https://github.com/SDWebImage/SDWebImageLottiePlugin) - plugin to support [Lottie-iOS](https://github.com/airbnb/lottie-ios), vector animation rending with remote JSON files
- [SDWebImageSVGKitPlugin](https://github.com/SDWebImage/SDWebImageSVGKitPlugin) - plugin to support [SVGKit](https://github.com/SVGKit/SVGKit), SVG rendering using Core Animation, iOS 8+/macOS 10.10+ support
- [SDWebImageFLP
没有合适的资源?快使用搜索试试~ 我知道了~
毕业设计 基于iOS的音乐播放器设计与实现+全部资料齐全+详细文档 高分项目.zip
共619个文件
h:337个
m:125个
png:46个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 75 浏览量
2024-05-15
11:23:35
上传
评论
收藏 852KB ZIP 举报
温馨提示
【资源说明】 毕业设计 基于iOS的音乐播放器设计与实现+全部资料齐全+详细文档 高分项目.zip 【备注】 1、该项目是个人高分项目源码,已获导师指导认可通过,答辩评审分达到95分 2、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 3、本项目适合计算机相关专业(人工智能、通信工程、自动化、电子信息、物联网等)的在校学生、老师或者企业员工下载使用,也可作为毕业设计、课程设计、作业、项目初期立项演示等,当然也适合小白学习进阶。 4、如果基础还行,可以在此代码基础上进行修改,以实现其他功能,也可直接用于毕设、课设、作业等。 欢迎下载,沟通交流,互相学习,共同进步!
资源推荐
资源详情
资源评论
收起资源包目录
毕业设计 基于iOS的音乐播放器设计与实现+全部资料齐全+详细文档 高分项目.zip (619个子文件)
contents 793B
SDmetamacros.h 30KB
AFURLSessionManager.h 30KB
AFURLRequestSerialization.h 22KB
SDWebImageDefine.h 22KB
SDImageCache.h 21KB
AFHTTPSessionManager.h 20KB
UIButton+WebCache.h 20KB
NSButton+WebCache.h 17KB
SDWebImageDownloader.h 15KB
SDImageCoder.h 14KB
SDWebImageManager.h 13KB
AFURLResponseSerialization.h 12KB
SVProgressHUD.h 11KB
SDImageLoader.h 10KB
UIButton+AFNetworking.h 10KB
AFImageDownloader.h 9KB
UIImageView+WebCache.h 9KB
SDAnimatedImageView+WebCache.h 8KB
AFNetworkReachabilityManager.h 8KB
SDWebImageDownloaderOperation.h 8KB
MASConstraint.h 8KB
SDImageTransformer.h 8KB
SDImageCacheDefine.h 8KB
SDWebImageTransition.h 7KB
SDAnimatedImage.h 6KB
UIImageView+HighlightedWebCache.h 6KB
SDImageCacheConfig.h 6KB
AFAutoPurgingImageCache.h 6KB
MASUtilities.h 6KB
SDImageCoderHelper.h 6KB
SDWebImagePrefetcher.h 6KB
UIView+WebCache.h 6KB
UIImageView+AFNetworking.h 6KB
AFSecurityPolicy.h 6KB
SDAnimatedImageView.h 6KB
MASConstraintMaker.h 6KB
UIImage+Transform.h 6KB
AFNetworkActivityIndicatorManager.h 5KB
SDAnimatedImagePlayer.h 5KB
SDDiskCache.h 5KB
View+MASAdditions.h 5KB
SDWebImageDownloaderConfig.h 5KB
View+MASShorthandAdditions.h 5KB
UIWebView+AFNetworking.h 4KB
SDGraphicsImageRenderer.h 4KB
SDWebImageDownloaderResponseModifier.h 3KB
SDWebImage.h 3KB
SDInternalMacros.h 3KB
SDWebImageIndicator.h 3KB
SDWebImageDownloaderRequestModifier.h 3KB
NSImage+Compatibility.h 3KB
UIImage+MultiFormat.h 3KB
SDImageCachesManager.h 3KB
AVPlayerManager.h 3KB
NSArray+MASAdditions.h 3KB
UIImage+Metadata.h 3KB
SDMemoryCache.h 2KB
SDWebImageError.h 2KB
SDWebImageOptionsProcessor.h 2KB
UIProgressView+AFNetworking.h 2KB
SDImageIOAnimatedCoder.h 2KB
SDWebImageDownloaderDecryptor.h 2KB
SDImageCodersManager.h 2KB
SDWebImageCompat.h 2KB
NSData+ImageContentType.h 2KB
UIRefreshControl+AFNetworking.h 2KB
UIActivityIndicatorView+AFNetworking.h 2KB
SDImageIOAnimatedCoderInternal.h 2KB
MASConstraint+Private.h 2KB
UIKit+AFNetworking.h 2KB
AFNetworking.h 2KB
UIView+WebCacheOperation.h 2KB
AFCompatibilityMacros.h 2KB
SDImageGraphics.h 2KB
CXSPlayerManager.h 2KB
UIImage+ForceDecode.h 1KB
SDWebImageCacheSerializer.h 1KB
UIImage+ExtendedCacheData.h 1KB
UIImage+AFNetworking.h 1KB
UIImage+MemoryCacheCost.h 1KB
CXSPlayerView.h 1KB
MASViewConstraint.h 1KB
SDImageIOCoder.h 1KB
MASViewAttribute.h 1KB
SDImageHEICCoder.h 1KB
SDAnimatedImageRep.h 1KB
SDImageFrame.h 1KB
SDFileAttributeHelper.h 1KB
SDImageLoadersManager.h 1KB
SDWebImageCacheKeyFilter.h 1KB
SDImageGIFCoder.h 1KB
SDImageAssetManager.h 1KB
NSArray+MASShorthandAdditions.h 1016B
SDDisplayLink.h 1011B
SDImageAWebPCoder.h 974B
ViewController+MASAdditions.h 891B
Masonry.h 802B
UIImage+GIF.h 765B
SDAsyncBlockOperation.h 724B
共 619 条
- 1
- 2
- 3
- 4
- 5
- 6
- 7
资源评论
不走小道
- 粉丝: 3335
- 资源: 5059
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功