iOS-播放gif動畫文件(OC方法)

iOS-.gif動畫文件的播放

前言

播放gif動畫的方法有多種:

  1. 將gif圖片分解成多張圖片使用UIImageView播放
  2. webView直接播放.gif文件
  3. 使用第三方播放

本文主要介紹的是這三種方法播放gif動畫臣咖,并提供一個使用第三種方法制作的播放gif的loading實例。接下就步入正題吧(__)裆站!


為了方便大家使用封裝了一個可以在任意VIEW播放gif動畫的工具類雏搂,歡迎使用渗勘!

VDGifPlayerTool.h

#import <Foundation/Foundation.h>

@interface VDGifPlayerTool : NSObject

- (void)addGifWithName:(NSString *)gifName toView:(UIView *)view;

@end

VDGifPlayerTool.m

#import "VDGifPlayerTool.h"
#import <ImageIO/ImageIO.h>
#import <MobileCoreServices/MobileCoreServices.h>

@interface VDGifPlayerTool()
@property (nonatomic, strong)UIView *gifContentView;

@property (nonatomic, assign)CGImageSourceRef gif;
@property (nonatomic, strong)NSDictionary *gifDic;
@property (nonatomic, assign)size_t index;
@property (nonatomic, assign)size_t count;
@property (nonatomic, strong)NSTimer *timer;

@end
@implementation VDGifPlayerTool

- (void)addGifWithName:(NSString *)gifName toView:(UIView *)view{
    self.gifContentView = view;
    [self createGif:gifName];
}

- (void)createGif:(NSString *)name{
    
    //    _gifContentView.layer.borderColor = UIColorFromRGB(No_Choose_Color).CGColor;
    //    _gifContentView.layer.borderWidth = 1.0;
    NSDictionary *gifLoopCount = [NSDictionary dictionaryWithObject:[NSNumber numberWithInt:0] forKey:(NSString *)kCGImagePropertyGIFLoopCount];
    _gifDic = [NSDictionary dictionaryWithObject:gifLoopCount forKey:(NSString *)kCGImagePropertyGIFDictionary];
    
    NSData *gif = [NSData dataWithContentsOfFile: [[NSBundle mainBundle] pathForResource:name ofType:@"gif"]];
    _gif = CGImageSourceCreateWithData((CFDataRef)gif, (CFDictionaryRef)_gifDic);
    _count = CGImageSourceGetCount(_gif);
    _timer = [NSTimer scheduledTimerWithTimeInterval:0.02 target:self selector:@selector(startLoading) userInfo:nil repeats:YES];
    [_timer fire];
}
-(void)startLoading
{
    _index ++;
    _index = _index%_count;
    CGImageRef ref = CGImageSourceCreateImageAtIndex(_gif, _index, (CFDictionaryRef)_gifDic);
    self.gifContentView.layer.contents = (__bridge id)ref;
    CFRelease(ref);
}
- (void)dealloc{
    if (_gif) {
        CFRelease(_gif);
    }
}
@end

一殃饿、UIImageView實現(xiàn)gif動畫

用imageView制作gif動畫最經典就是湯姆貓茄唐,感興趣的可以百度或者谷歌一下“iOS湯姆貓源代碼”张惹。在這里只是簡單的介紹imageview的gif動畫實現(xiàn)舀锨,你也可以用計時器(NSTimer).在做這些之前必須要將gif分解成一張張PNG圖片。

UIImageView *gifImageView = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 100, 100)];
    gifImageView.center = self.view.center;
    [self.view addSubview:gifImageView];
    
    NSMutableArray *images = [NSMutableArray array];
    for (int i=0; i < 10; i++) {
        [images addObject:[UIImage imageNamed:[NSString stringWithFormat:@"image%d",i]]];
    }
    gifImageView.animationImages = images;
    gifImageView.animationDuration = 5.0;
    gifImageView.animationRepeatCount = NSUIntegerMax;
    [gifImageView startAnimating];

二宛逗、UIWebView實現(xiàn).gif動畫文件的播放

webView可以加載很多文件是個很強大的控件坎匿,實現(xiàn)gif播放簡單直接不過只能循環(huán)播放。

CGSize size = [UIImage imageNamed:@"name.gif"].size;
    UIWebView *webView = [[UIWebView alloc]initWithFrame:CGRectMake(0, 0, size.width, size.height)];
    webView.center = self.view.center;
    webView.userInteractionEnabled = NO;
    webView.backgroundColor = [UIColor whiteColor];
    [self.view addSubview:webView];
    NSData *data = [NSData dataWithContentsOfFile:[[NSBundle mainBundle]pathForResource:@"name" ofType:@"gif"]];
    [webView loadData:data MIMEType:@"image/gif" textEncodingName:nil baseURL:nil];

三雷激、第三方實現(xiàn)播放gif動畫

首先需要導入兩個庫:ImageIO.frameworkMobileCoreServices.framework;具體實現(xiàn)是采用ImageIO庫對.gif文件進行解析獲取相關資源最后進行動畫的播放碑诉,下面是自己寫的播放gif動畫的loading實例(比較簡陋大家將就看看,知道怎么實現(xiàn)就行了_)侥锦。

GifLoadingView.h

#import <UIKit/UIKit.h>

@interface GifLoadingView : UIView
+(void)startLoading;
+(void)endLoading;
@end

GifLoadingView.m

#define  GIF_WIDTH 80*1.2
#import "GifLoadingView.h"
#import <ImageIO/ImageIO.h>
#import <MobileCoreServices/MobileCoreServices.h>
@interface GifLoadingView()
@property (nonatomic, strong)NSMutableArray<UIImage *> *images;
@property (nonatomic, strong)GifLoadingView *loading;
@property (nonatomic, strong)UIView *gifContentView;

@property (nonatomic, assign)CGImageSourceRef gif;
@property (nonatomic, strong)NSDictionary *gifDic;
@property (nonatomic, assign)size_t index;
@property (nonatomic, assign)size_t count;
@property (nonatomic, strong)NSTimer *timer;

@end
@implementation GifLoadingView
- (instancetype)init{
    self = [self initWithFrame:CGRectMake(0, 0, GIF_WIDTH, GIF_WIDTH)];
    if (self) {
        self.backgroundColor = [UIColor whiteColor];
        self.layer.cornerRadius = GIF_WIDTH/2;
        self.layer.masksToBounds = YES;
        [self createGif];

    }
    return self;
}

- (void)createGif{
    
//    _gifContentView.layer.borderColor = UIColorFromRGB(No_Choose_Color).CGColor;
//    _gifContentView.layer.borderWidth = 1.0;
    NSDictionary *gifLoopCount = [NSDictionary dictionaryWithObject:[NSNumber numberWithInt:0] forKey:(NSString *)kCGImagePropertyGIFLoopCount];
    _gifDic = [NSDictionary dictionaryWithObject:gifLoopCount forKey:(NSString *)kCGImagePropertyGIFDictionary];

    NSData *gif = [NSData dataWithContentsOfFile: [[NSBundle mainBundle] pathForResource:@"loading" ofType:@"gif"]];
    _gif = CGImageSourceCreateWithData((CFDataRef)gif, (CFDictionaryRef)_gifDic);
    _count = CGImageSourceGetCount(_gif);
    _timer = [NSTimer scheduledTimerWithTimeInterval:0.1 target:self selector:@selector(startLoading) userInfo:nil repeats:YES];
    [_timer fire];
}
-(void)startLoading
{
    _index ++;
    _index = _index%_count;
    CGImageRef ref = CGImageSourceCreateImageAtIndex(_gif, _index, (CFDictionaryRef)_gifDic);
    self.layer.contents = (__bridge id)ref;
    CFRelease(ref);
}
+ (void)startLoading{
    GifLoadingView *loading = [[GifLoadingView alloc]init];
    UIWindow *keyView = [UIApplication sharedApplication].keyWindow;
    loading.center = keyView.center;
    [keyView addSubview:loading];
    dispatch_main_after(5.0f, ^{
        [GifLoadingView endLoading];
    });
}
+ (void)endLoading{
    for (UIView *view in [UIApplication sharedApplication].keyWindow.subviews) {
        if ([view isKindOfClass:[GifLoadingView class]]) {
//            [UIView animateWithDuration:1.0 animations:^{
//                view.alpha = 0;
//            } completion:^(BOOL finished) {
               [((GifLoadingView *)view) stopGif];
               [view removeFromSuperview];
//            }];
        }
    }
    
}
- (void)stopGif
{
    [_timer invalidate];
    _timer = nil;
}
- (void)dealloc{
    CFRelease(_gif);
}

static void dispatch_main_after(NSTimeInterval delay, void (^block)(void))
{
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delay * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        block();
    });
}

總結

簡要總結一些三個方法的利弊:

  1. UIImageView采用幀動畫將圖片一張張顯示进栽,這個方法可以調節(jié)播放次數(shù)和速度但圖片過多過大內存會很有壓力。另外在保證播放的動畫清晰和時長的情況下.gif文件大小會遠小于多張.png圖片的大小恭垦。

  2. UIWebView實現(xiàn)播放gif特別簡單直接快毛,如果你只想單純的播放一下建議使用此方法。弊端就是只能循環(huán)播放~~~(>_<)~~~番挺,無法控制它的暫停和其他操作唠帝。

  3. 使用第三方播放gif動畫集合了第一種方法好處你可以對動畫進行一系列操作,在.gif文件比較大的情況下建議使用玄柏。(個人喜歡使用此方法)襟衰。


最后

我的第二次(寫文章)就這么完了。以上很多觀點為自己的個人看法不喜勿噴粪摘,當然噴了也沒事瀑晒。最后感謝那些能看完小爺這篇文章的小伙伴們,希望能夠幫助到你們徘意。( _ )/~~拜拜苔悦。

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市椎咧,隨后出現(xiàn)的幾起案子玖详,更是在濱河造成了極大的恐慌,老刑警劉巖勤讽,帶你破解...
    沈念sama閱讀 206,378評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件蟋座,死亡現(xiàn)場離奇詭異,居然都是意外死亡脚牍,警方通過查閱死者的電腦和手機向臀,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來莫矗,“玉大人飒硅,你說我怎么就攤上這事砂缩。” “怎么了三娩?”我有些...
    開封第一講書人閱讀 152,702評論 0 342
  • 文/不壞的土叔 我叫張陵庵芭,是天一觀的道長。 經常有香客問我雀监,道長双吆,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,259評論 1 279
  • 正文 為了忘掉前任会前,我火速辦了婚禮好乐,結果婚禮上,老公的妹妹穿的比我還像新娘瓦宜。我一直安慰自己蔚万,他們只是感情好,可當我...
    茶點故事閱讀 64,263評論 5 371
  • 文/花漫 我一把揭開白布临庇。 她就那樣靜靜地躺著反璃,像睡著了一般。 火紅的嫁衣襯著肌膚如雪假夺。 梳的紋絲不亂的頭發(fā)上淮蜈,一...
    開封第一講書人閱讀 49,036評論 1 285
  • 那天,我揣著相機與錄音已卷,去河邊找鬼梧田。 笑死,一個胖子當著我的面吹牛侧蘸,可吹牛的內容都是我干的裁眯。 我是一名探鬼主播,決...
    沈念sama閱讀 38,349評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼闺魏,長吁一口氣:“原來是場噩夢啊……” “哼未状!你這毒婦竟也來了?” 一聲冷哼從身側響起析桥,我...
    開封第一講書人閱讀 36,979評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎艰垂,沒想到半個月后泡仗,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經...
    沈念sama閱讀 43,469評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡猜憎,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 35,938評論 2 323
  • 正文 我和宋清朗相戀三年娩怎,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片胰柑。...
    茶點故事閱讀 38,059評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡截亦,死狀恐怖爬泥,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情崩瓤,我是刑警寧澤袍啡,帶...
    沈念sama閱讀 33,703評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站却桶,受9級特大地震影響境输,放射性物質發(fā)生泄漏。R本人自食惡果不足惜颖系,卻給世界環(huán)境...
    茶點故事閱讀 39,257評論 3 307
  • 文/蒙蒙 一嗅剖、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧嘁扼,春花似錦信粮、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至莲绰,卻和暖如春欺旧,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背蛤签。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工辞友, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人震肮。 一個月前我還...
    沈念sama閱讀 45,501評論 2 354
  • 正文 我出身青樓称龙,卻偏偏與公主長得像,于是被迫代替她去往敵國和親戳晌。 傳聞我的和親對象是個殘疾皇子鲫尊,可洞房花燭夜當晚...
    茶點故事閱讀 42,792評論 2 345

推薦閱讀更多精彩內容