【发布时间】:2014-09-12 11:23:58
【问题描述】:
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];
【问题讨论】:
-
您是否尝试过
+(UIImage *)animatedImageWithImages:(NSArray *)images duration:(NSTimeInterval)duration来创建您的UIImage。
标签: ios twitter gif slcomposeviewcontroller