Add prefix to GIF support category's methods
This commit is contained in:
parent
65807f262e
commit
4137bce30d
|
@ -10,6 +10,6 @@
|
|||
|
||||
@interface NSData (GIF)
|
||||
|
||||
- (BOOL)isGIF;
|
||||
- (BOOL)sd_isGIF;
|
||||
|
||||
@end
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
@implementation NSData (GIF)
|
||||
|
||||
- (BOOL)isGIF
|
||||
- (BOOL)sd_isGIF
|
||||
{
|
||||
BOOL isGIF = NO;
|
||||
|
||||
|
|
|
@ -181,9 +181,9 @@ static const NSInteger kDefaultCacheMaxCacheAge = 60 * 60 * 24 * 7; // 1 week
|
|||
NSData *data = [NSData dataWithContentsOfFile:path];
|
||||
if (data)
|
||||
{
|
||||
if ([data isGIF])
|
||||
if ([data sd_isGIF])
|
||||
{
|
||||
UIImage *image = [UIImage animatedGIFWithData:data];
|
||||
UIImage *image = [UIImage sd_animatedGIFWithData:data];
|
||||
return [self scaledImageForKey:key image:image];
|
||||
}
|
||||
else
|
||||
|
|
|
@ -275,12 +275,12 @@
|
|||
}
|
||||
else
|
||||
{
|
||||
BOOL isImageGIF = [self.imageData isGIF];
|
||||
BOOL isImageGIF = [self.imageData sd_isGIF];
|
||||
|
||||
UIImage *image;
|
||||
if (isImageGIF)
|
||||
{
|
||||
image = [UIImage animatedGIFWithData:self.imageData];
|
||||
image = [UIImage sd_animatedGIFWithData:self.imageData];
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -150,7 +150,7 @@
|
|||
{
|
||||
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^
|
||||
{
|
||||
BOOL isImageGIF = [data isGIF];
|
||||
BOOL isImageGIF = [data sd_isGIF];
|
||||
UIImage *transformedImage = isImageGIF ? downloadedImage : [self.delegate imageManager:self transformDownloadedImage:downloadedImage withURL:url];
|
||||
|
||||
dispatch_async(dispatch_get_main_queue(), ^
|
||||
|
|
|
@ -11,9 +11,9 @@
|
|||
|
||||
@interface UIImage (GIF)
|
||||
|
||||
+ (UIImage *)animatedGIFNamed:(NSString *)name;
|
||||
+ (UIImage *)animatedGIFWithData:(NSData *)data;
|
||||
+ (UIImage *)sd_animatedGIFNamed:(NSString *)name;
|
||||
+ (UIImage *)sd_animatedGIFWithData:(NSData *)data;
|
||||
|
||||
- (UIImage *)animatedImageByScalingAndCroppingToSize:(CGSize)size;
|
||||
- (UIImage *)sd_animatedImageByScalingAndCroppingToSize:(CGSize)size;
|
||||
|
||||
@end
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
@implementation UIImage (GIF)
|
||||
|
||||
+ (UIImage *)animatedGIFWithData:(NSData *)data
|
||||
+ (UIImage *)sd_animatedGIFWithData:(NSData *)data
|
||||
{
|
||||
if (!data)
|
||||
{
|
||||
|
@ -47,7 +47,7 @@
|
|||
return [UIImage animatedImageWithImages:images duration:duration];
|
||||
}
|
||||
|
||||
+ (UIImage *)animatedGIFNamed:(NSString *)name
|
||||
+ (UIImage *)sd_animatedGIFNamed:(NSString *)name
|
||||
{
|
||||
CGFloat scale = [UIScreen mainScreen].scale;
|
||||
|
||||
|
@ -59,7 +59,7 @@
|
|||
|
||||
if (data)
|
||||
{
|
||||
return [UIImage animatedGIFWithData:data];
|
||||
return [UIImage sd_animatedGIFWithData:data];
|
||||
}
|
||||
|
||||
NSString *path = [[NSBundle mainBundle] pathForResource:name ofType:@"gif"];
|
||||
|
@ -68,7 +68,7 @@
|
|||
|
||||
if (data)
|
||||
{
|
||||
return [UIImage animatedGIFWithData:data];
|
||||
return [UIImage sd_animatedGIFWithData:data];
|
||||
}
|
||||
|
||||
return [UIImage imageNamed:name];
|
||||
|
@ -81,14 +81,14 @@
|
|||
|
||||
if (data)
|
||||
{
|
||||
return [UIImage animatedGIFWithData:data];
|
||||
return [UIImage sd_animatedGIFWithData:data];
|
||||
}
|
||||
|
||||
return [UIImage imageNamed:name];
|
||||
}
|
||||
}
|
||||
|
||||
- (UIImage *)animatedImageByScalingAndCroppingToSize:(CGSize)size
|
||||
- (UIImage *)sd_animatedImageByScalingAndCroppingToSize:(CGSize)size
|
||||
{
|
||||
if (CGSizeEqualToSize(self.size, size) || CGSizeEqualToSize(size, CGSizeZero))
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue