我的应用程序中有一个推文按钮,它也与代码挂钩
{
UIGraphicsBeginImageContext(self.view.bounds.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *screenshotImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(screenshotImage, nil, nil, nil);
}
我需要知道如何将使用此代码创建的图像放到
[tweetSheet addImage:_______];
这样他们就可以将图像连同他们的推文一起推文。谢谢