I'm getting an EXC_BAD_ACCESS crash when uploading an image. I've confirmed that the image data is good, since I used it with Facebook Connect as well. For the image data I do:
Code:
NSData *imageData = UIImageJPEGRepresentation(self.myImage, 1.0);
[fbAgent uploadPhotoAsData:imageData withStatus:statusText.text caption:nil toAlbum:nil];
I've already made the NSDictionary -> NSMutableDictionary change mentioned in FacebookAgent.m.
Has anyone else had this issue or found a solution?