iOS 圖片view設(shè)置gif動(dòng)圖

這里有兩張?jiān)O(shè)置的方法

第一種:使用第三方框架sdwebimage

#import"UIImage+GIF.h"

NSString*name =@"750-611"; //圖片的名字

NSString*filePath = [[NSBundlebundleWithPath:[[NSBundlemainBundle]bundlePath]]pathForResource:nameofType:@"gif"];

NSData*imageData = [NSDatadataWithContentsOfFile:filePath];

_dImg.backgroundColor= [UIColorclearColor];

_dImg.image= [UIImagesd_animatedGIFWithData:imageData];


第二種:引入U(xiǎn)IImageView的子類ZLGIFImageView(自定義的類)

#import"ZLGIFImageView.h"

NSString* filePath? = [[NSBundle mainBundle] pathForResource:@"750-611" ofType:@"gif"];

NSData* imageData ? = [NSData dataWithContentsOfFile:filePath];

[_dImg setData:imageData];

下邊是ZLGIFImageView.h 和 ZLGIFImageView.m文件


ZLGIFImageView.h

#import@interface ZLGIFImageFrame : NSObject {

}

@property (nonatomic) double duration;

@property (nonatomic, retain) UIImage* image;

@end

@interface ZLGIFImageView : UIImageView {

NSInteger _currentImageIndex;

}

@property (nonatomic, retain) NSArray* imageFrameArray;

@property (nonatomic, retain) NSTimer* timer;

//Setting this value to pause or continue animation;

@property (nonatomic) BOOL animating;

- (void)setData:(NSData*)imageData;

- (void)closeAnim;

- (void)startAnim;

- (void)stopAnim;

@end



ZLGIFImageView.m

#import "ZLGIFImageView.h"
#import <ImageIO/ImageIO.h>
@implementation ZLGIFImageFrame

@synthesize image = _image;

@synthesize duration = _duration;

- (void)dealloc

{

[_image release];

[super dealloc];

}

@end

@interface ZLGIFImageView ()

- (void)resetTimer;

- (void)showNextImage;

@end

@implementation ZLGIFImageView

@synthesize imageFrameArray = _imageFrameArray;

@synthesize timer = _timer;

@synthesize animating = _animating;

- (void)closeAnim

{

[self release];

}

- (void)stopAnim

{

[self resetTimer];

[_timer release];

}

- (void)startAnim

{

[self resetTimer];

_currentImageIndex = -1;

_animating = YES;

[self showNextImage];

}

- (void)dealloc

{

[self resetTimer];

[_imageFrameArray release];

[_timer release];

[super dealloc];

}

- (void)resetTimer {

if (_timer && _timer.isValid) {

[_timer invalidate];

}

self.timer = nil;

}

- (void)setData:(NSData *)imageData {

if (!imageData) {

return;

}

[self resetTimer];

CGImageSourceRef source = CGImageSourceCreateWithData((CFDataRef)imageData, NULL);

size_t count = CGImageSourceGetCount(source);

NSMutableArray* tmpArray = [NSMutableArray array];

for (size_t i = 0; i < count; i++) {

ZLGIFImageFrame* gifImage = [[[ZLGIFImageFrame alloc] init] autorelease];

CGImageRef image = CGImageSourceCreateImageAtIndex(source, i, NULL);

gifImage.image = [UIImage imageWithCGImage:image scale:[UIScreen mainScreen].scale orientation:UIImageOrientationUp];

NSDictionary* frameProperties = [(NSDictionary*)CGImageSourceCopyPropertiesAtIndex(source, i, NULL) autorelease];

gifImage.duration = [[[frameProperties objectForKey:(NSString*)kCGImagePropertyGIFDictionary] objectForKey:(NSString*)kCGImagePropertyGIFDelayTime] doubleValue];

gifImage.duration = MAX(gifImage.duration, 0.01);

[tmpArray addObject:gifImage];

CGImageRelease(image);

}

CFRelease(source);

self.imageFrameArray = nil;

if (tmpArray.count > 1) {

self.imageFrameArray = tmpArray;

_currentImageIndex = -1;

_animating = YES;

[self showNextImage];

} else {

self.image = [UIImage imageWithData:imageData];

}

}

- (void)setImage:(UIImage *)image {

[super setImage:image];

[self resetTimer];

self.imageFrameArray = nil;

_animating = NO;

}

- (void)showNextImage {

if (!_animating) {

return;

}

_currentImageIndex = (++_currentImageIndex) % _imageFrameArray.count;

ZLGIFImageFrame* gifImage = [_imageFrameArray objectAtIndex:_currentImageIndex];

[super setImage:[gifImage image]];

self.timer = [NSTimer scheduledTimerWithTimeInterval:gifImage.duration target:self selector:@selector(showNextImage) userInfo:nil repeats:NO];

}

- (void)setAnimating:(BOOL)animating {

if (_imageFrameArray.count < 2) {

_animating = animating;

return;

}

if (!_animating && animating) {

_animating = animating;

if (!_timer) {

[self showNextImage];

}

} else if (_animating && !animating) {

_animating = animating;

[self resetTimer];

}

}

@end

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末憨奸,一起剝皮案震驚了整個(gè)濱河市墩新,隨后出現(xiàn)的幾起案子燥筷,更是在濱河造成了極大的恐慌庐船,老刑警劉巖寞奸,帶你破解...
    沈念sama閱讀 211,194評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件茵臭,死亡現(xiàn)場離奇詭異沽瘦,居然都是意外死亡啦租,警方通過查閱死者的電腦和手機(jī)煮岁,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,058評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門讥蔽,熙熙樓的掌柜王于貴愁眉苦臉地迎上來死姚,“玉大人,你說我怎么就攤上這事勤篮《级荆” “怎么了?”我有些...
    開封第一講書人閱讀 156,780評(píng)論 0 346
  • 文/不壞的土叔 我叫張陵碰缔,是天一觀的道長账劲。 經(jīng)常有香客問我,道長金抡,這世上最難降的妖魔是什么瀑焦? 我笑而不...
    開封第一講書人閱讀 56,388評(píng)論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮梗肝,結(jié)果婚禮上榛瓮,老公的妹妹穿的比我還像新娘。我一直安慰自己巫击,他們只是感情好禀晓,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,430評(píng)論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著坝锰,像睡著了一般粹懒。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上顷级,一...
    開封第一講書人閱讀 49,764評(píng)論 1 290
  • 那天凫乖,我揣著相機(jī)與錄音,去河邊找鬼弓颈。 笑死帽芽,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的翔冀。 我是一名探鬼主播导街,決...
    沈念sama閱讀 38,907評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢(mèng)啊……” “哼橘蜜!你這毒婦竟也來了菊匿?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,679評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤计福,失蹤者是張志新(化名)和其女友劉穎跌捆,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體象颖,經(jīng)...
    沈念sama閱讀 44,122評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡佩厚,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,459評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了说订。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片抄瓦。...
    茶點(diǎn)故事閱讀 38,605評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡潮瓶,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出钙姊,到底是詐尸還是另有隱情毯辅,我是刑警寧澤,帶...
    沈念sama閱讀 34,270評(píng)論 4 329
  • 正文 年R本政府宣布煞额,位于F島的核電站思恐,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏膊毁。R本人自食惡果不足惜胀莹,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,867評(píng)論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望婚温。 院中可真熱鬧描焰,春花似錦、人聲如沸栅螟。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,734評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽嵌巷。三九已至萄凤,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間搪哪,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,961評(píng)論 1 265
  • 我被黑心中介騙來泰國打工坪圾, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留晓折,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,297評(píng)論 2 360
  • 正文 我出身青樓兽泄,卻偏偏與公主長得像漓概,于是被迫代替她去往敵國和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子病梢,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,472評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容