mirror of
https://github.com/wu736139669/Ash_AWord.git
synced 2026-08-07 06:37:08 +00:00
19 lines
381 B
C
19 lines
381 B
C
//
|
|
// DTAnimatedGIF.h
|
|
// DTFoundation
|
|
//
|
|
// Created by Oliver Drobnik on 7/2/14.
|
|
// Copyright (c) 2014 Cocoanetics. All rights reserved.
|
|
//
|
|
|
|
|
|
/**
|
|
Loads an animated GIF from file, compatible with UIImageView
|
|
*/
|
|
UIImage *DTAnimatedGIFFromFile(NSString *path);
|
|
|
|
/**
|
|
Loads an animated GIF from data, compatible with UIImageView
|
|
*/
|
|
UIImage *DTAnimatedGIFFromData(NSData *data);
|