私は過去数時間からの答えを探しています。Apple と Facebook が gif 画像をサポートしていないことはわかっています。iPhone アプリで gif 画像を表示および作成したいのですが、画像シーケンスを作成してアニメーションを与える代替ソリューションを見つけました。これらの画像から GIF 画像を作成し、Facebook のウォールに投稿したいと考えています。
Facebook と Apple についてグーグルで検索したところ、2 年前の回答が表示されました。Apple と Facebook のポリシーが変更された可能性があります。iPhone アプリで GIF 画像を作成し、Facebook に投稿することはできますか?
このスタック オーバーフローの質問によると、Apple は gif 画像をサポートしていますか?
UIImageView* animatedImageView = [[UIImageView alloc] initWithFrame:self.view.bounds];
animatedImageView.animationImages = [NSArray arrayWithObjects:
[UIImage imageNamed:@"image1.gif"],
[UIImage imageNamed:@"image2.gif"],
[UIImage imageNamed:@"image3.gif"],
[UIImage imageNamed:@"image4.gif"], nil];
animatedImageView.animationDuration = 1.0f;
animatedImageView.animationRepeatCount = 0;
[animatedImageView startAnimating];
[self.view addSubview: animatedImageView];