代码笔记iOS-gif图片播放

Posted 菜鸟and小白

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了代码笔记iOS-gif图片播放相关的知识,希望对你有一定的参考价值。

一,效果图。

二,工程图。

三,代码。

RootViewController.h

#import <UIKit/UIKit.h>

@interface RootViewController : UIViewController

@end

 

RootViewController.m

复制代码
#import "RootViewController.h"
//加入头文件
#import "GifView.h"


@interface RootViewController ()

@end

@implementation RootViewController

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    GifView *gifview = [[GifView alloc] initWithFrame:CGRectMake(0, 0, 200, 200) filePath:[[NSBundle mainBundle] pathForResource:@"test.gif" ofType:nil]];
    [self.view addSubview:gifview];

}
复制代码

 

以上是关于代码笔记iOS-gif图片播放的主要内容,如果未能解决你的问题,请参考以下文章

如何利用ffmpeg将一小段视频截取成图片

ROS学习笔记52--图片从compressed格式转raw格式代码接口介绍

根据图片的url地址下载图片到本地保存代码片段

如何在片段中播放视频

如何让 videoView 在片段内播放?

学习笔记:python3,代码片段(2017)