我已經差不多2天時間找到問題的解決方案,但我沒有成功,我想在Facebook,Twitter上分享GIF(動畫圖像)電子郵件,WhatsApp,使用「UIActivityViewController」。iOS分享GIF(動畫圖像)不工作
這是我的代碼:
NSURL *imagePath = [NSURL URLWithString:@"http://sth.gif"];
NSData *animatedGif = [NSData dataWithContentsOfURL:imagePath];
NSArray *sharingItems = [NSArray arrayWithObjects: animatedGif,stringToShare, nil];
UIActivityViewController *activityVC = [[UIActivityViewController alloc] initWithActivityItems:sharingItems applicationActivities:nil];
,當我在電子郵件分享它的動畫和它的工作完美,但在推特,臉譜,WhatsApp的照片與圖像不動畫和其他具有類似圖像... 我已經閱讀所有關於相同問題的堆棧溢出問題如this或this或this但它不適用於我。
您的Facebook的解決方案是不錯,可惜到現在爲止這是在Facebook上共享的GIF的唯一途徑。 – Sattar