我尝试使用 Xcode 中的共享工具包将我的应用程序(iOS 应用程序)中的照片发送到 Twitter,但出现此错误:共享时出错。当我通过电子邮件或面子书发送它时,它可以工作,但是对于 twitter,我收到了这个错误。这是我要发送的代码:
(IBAction) SendingImage:(id) sender {
UIImage *image=self.unfilteredImage; // 得到
SHKItem *shareItem =[SHKItem image:image title:@"My App"]; SHKActionSheet *actionSheet =[SHKActionSheet actionSheetForItem:shareItem];
[actionSheet showInView:self.view];
//[动作表发布];
}