Twitter 现在支持发布动画 GIF。请参阅:https : //twitter.com/Support/status/479307198901026816 但是我一直在尝试使用 SLComposeViewController 将动画 gif 发布到 twitter,但 gif 被展平为单帧。
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];