我已经实现了图像选择器控制器委托:
- (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。
谢谢