I tried to send a photo from my app ( iOS app) using share kit in Xcode to twitter, but I got this error : there was an error while sharing . when I send it by Email or face book it's work, but for twitter I got this error . this is my code to send :
(IBAction) SendingImage:(id) sender {
UIImage *image=self.unfilteredImage; // get
SHKItem *shareItem =[SHKItem image:image title:@"My App"]; SHKActionSheet *actionSheet =[SHKActionSheet actionSheetForItem:shareItem];
[actionSheet showInView:self.view];
//[actionSheet release];
}