Xcodeの共有キットを使用して自分のアプリ(iOSアプリ)から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];
//[actionSheetリリース];
}