Twitter でアニメーション GIF の投稿がサポートされるようになりました。参照: https://twitter.com/Support/status/479307198901026816ただし、SLComposeViewController を使用してアニメーション GIF を Twitter に投稿しようとしましたが、gif は 1 つのフレームにフラット化されます。
NSData *data = [NSData dataWithContentsOfFile:self.filepath];
UIImage *gif = [UIImage imageWithData:data];
SLComposeViewController *sheet = [SLComposeViewController composeViewControllerForServiceType:serviceType];
[sheet setInitialText:[NSString stringWithFormat:@"Just created a Gif"]];
[sheet addImage:gif];
[self presentViewController:sheet animated:YES completion:nil];