当我使用 SLComposeViewController 将 png 图像发布到 Twitter 时,发布的图像会自动转换为 JPEG 图像。结果,图像质量劣化。你知道如何发布PNG格式。
任何帮助将不胜感激。
- (void)postTwitter
{
SLComposeViewController *controllerSLC = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeTwitter];
[controllerSLC setInitialText:@"Test post from my iPhone app"];
[controllerSLC addURL:[NSURL URLWithString:@"http://www.apple.com"]];
[controllerSLC addImage:[UIImage imageNamed:@"test.png"]];
[self presentViewController:controllerSLC animated:YES completion:Nil];
}