想使用UIPasteBoard将gif粘贴到邮件窗口中

may*_*uur 3 gif uipasteboard ios

我想展示一个gif,所以我做的是我拆分我的gif并使用此链接在UIImageView的动画中显示它.

http://iphonenativeapp.blogspot.com/2011/03/how-to-show-animation-in-iphoneipad-app.html

现在,我想让用户复制gif并将其粘贴到邮件应用程序中.

如果我使用包含gif的所有分割图像的数组,则将4-5张图像粘贴到邮件应用程序中.

请帮我粘贴gif.谢谢!

Fil*_*lic 7

要从类似的问题中复制/粘贴我自己的答案.

NSString *gifPath = [[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:@"volleyball.gif"];
NSData *gifData = [[NSData alloc] initWithContentsOfFile:gifPath];
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
[pasteboard setData:gifData forPasteboardType:@"com.compuserve.gif"];
[gifData release];
Run Code Online (Sandbox Code Playgroud)

编辑刚刚注意到你自己问了这两个类似的问题.