我的应用程序中有一个“在 Twitter 上分享”按钮操作。
我有一个正在解析的 JSON 图像,我想附加到推文中。我很难做到这一点。我尝试将 NSString 转换为 UIImage,但我的代码不起作用。
有什么帮助吗?
- (IBAction)shareOnTwitter:(id)sender {
if ([SLComposeViewController isAvailableForServiceType:SLServiceTypeTwitter])
{
SLComposeViewController *tweetSheet = [SLComposeViewController
composeViewControllerForServiceType:SLServiceTypeTwitter];
NSString *thumbURL = _singleRelease[@"images"][0][@"image_file"][@"image_file"][@"medium"][@"url"];
UIImage *image = [UIImage imageWithContentsOfFile:thumbURL];
[tweetSheet addImage:image];
[self presentViewController:tweetSheet animated:YES completion:nil];
}
}