From 7b02207537d35bfa1714bf8beafc921f717d100a Mon Sep 17 00:00:00 2001
From: 单军华
Date: Wed, 11 Jul 2018 10:47:42 +0800
Subject: [PATCH] 首次上传

---
 screendisplay/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h |   30 ++++++++++++++++++++++++++++++
 1 files changed, 30 insertions(+), 0 deletions(-)

diff --git a/screendisplay/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h b/screendisplay/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h
new file mode 100644
index 0000000..c0792d1
--- /dev/null
+++ b/screendisplay/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h
@@ -0,0 +1,30 @@
+/*
+ * This file is part of the SDWebImage package.
+ * (c) Olivier Poitrey <rs@dailymotion.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+#import "SDWebImageCompat.h"
+#import "NSData+ImageContentType.h"
+
+@interface UIImage (MultiFormat)
+
+/**
+ * UIKit:
+ * For static image format, this value is always 0.
+ * For animated image format, 0 means infinite looping.
+ * Note that because of the limitations of categories this property can get out of sync if you create another instance with CGImage or other methods.
+ * AppKit:
+ * NSImage currently only support animated via GIF imageRep unlike UIImage.
+ * The getter of this property will get the loop count from GIF imageRep
+ * The setter of this property will set the loop count from GIF imageRep
+ */
+@property (nonatomic, assign) NSUInteger sd_imageLoopCount;
+
++ (nullable UIImage *)sd_imageWithData:(nullable NSData *)data;
+- (nullable NSData *)sd_imageData;
+- (nullable NSData *)sd_imageDataAsFormat:(SDImageFormat)imageFormat;
+
+@end

--
Gitblit v1.8.0