LuxChat  2.0
Instant messenger for iOS
UIImage+GIF.h
1 //
2 // UIImage+GIF.h
3 // LBGIFImage
4 //
5 // Created by Laurin Brandner on 06.01.12.
6 // Copyright (c) 2012 __MyCompanyName__. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 
11 @interface UIImage (GIF)
12 
13 + (UIImage *)sd_animatedGIFNamed:(NSString *)name;
14 
15 + (UIImage *)sd_animatedGIFWithData:(NSData *)data;
16 
17 - (UIImage *)sd_animatedImageByScalingAndCroppingToSize:(CGSize)size;
18 
19 @end
Definition: UIImage+GIF.h:11