1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- #import <ImageIO/ImageIO.h>
- @interface UIImage (animatedGIF)
- + (UIImage *)animatedImageWithAnimatedGIFData:(NSData *)theData;
- + (UIImage *)animatedImageWithAnimatedGIFURL:(NSURL *)theURL;
- @end
|