我想将 .gif 图像复制到剪贴板,以便用户可以将该 gif 图像从应用程序粘贴到邮件等...
我努力了 :-
NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://fc05.deviantart.net/fs37/f/2008/283/a/b/KaleidoCoils_animated__gif_by_1389AD.gif"]];
UIPasteboard *pasteBoard=[UIPasteboard generalPasteboard];
[pasteBoard setImage:[UIImage imageWithData:data]];
但它以 .png 而不是 .gif 的格式复制。如何将 .gif 图像及其动画复制到剪贴板,可用作其他应用程序中的粘贴选项?
应用程序https://itunes.apple.com/us/app/animated-3d-emoji+emoticons/id429348043?mt=8已经这样做了。
请帮我。
提前致谢