0

我已经实现了图像选择器控制器委托:

- (void)imagePickerController:(UIImagePickerController *)picker
didFinishPickingMediaWithInfo:(NSDictionary *)info
{
NSString *mediaType = [info valueForKey:UIImagePickerControllerMediaType];
if ([mediaType isEqualToString:@"public.image"]) {
    UIImage *anImage = [info objectForKey:UIImagePickerControllerOriginalImage];
//i know i can get image name from info key.
    if(self.block) self.block(YES, anImage, nil);
}
[picker dismissViewControllerAnimated:YES completion:nil];
}

我正在使用 UIImageView+PlayGIF 类别从主资源包中成功显示 gif 图像(我的应用程序中的加载器)。有些事情像:

NSData *gifData = [NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"loading_image.gif" ofType:nil]];
CGRect bnd = view.bounds;
loader.gifView = [[YFGIFImageView alloc] initWithFrame:CGRectMake(bnd.size.width/2-60, bnd.size.height/2-70, 120, 120)];
loader.gifView.backgroundColor = [UIColor clearColor];
loader.gifView.gifData = gifData;

问题:那么如何将照片库 gif 导出为(whatevername.gif)的文档目录,并使用上述类别显示 gif。

或者我可以从照片库中直接获取 nsdata 并使用上述类别来显示 gif。(我更喜欢这个)。

我没有尝试使用 UIWebView,我可以在 UIWebView 上显示 gif。

谢谢

4

1 回答 1

1

设置 imageView 的属性。

@property (strong, nonatomic) IBOutlet UIImageView *YFGIFImageView; 

下载 GIF imageLoad 类UIImageView

GIFImageLoad

现在从NSBundle.

    NSURL *url = [[NSBundle mainBundle] URLForResource:@"loading_image" withExtension:@"gif"];

加载图像animatedImageWithAnimatedGIFData如下。

    self.YFGIFImageView.image = [UIImage animatedImageWithAnimatedGIFData:[NSData dataWithContentsOfURL:url]];

或者

使用 URL 加载图像,animatedImageWithAnimatedGIFURL如下所示。

    self.YFGIFImageView.image = [UIImage animatedImageWithAnimatedGIFURL:url];

或者

使用 GIFURL 加载图像,animatedImageWithAnimatedGIFURL如下所示。

    self.YFGIFImageView.image = [UIImage animatedImageWithAnimatedGIFURL:url];
于 2015-07-16T04:59:09.553 回答