I managed to implement Facebook connect on my iPhone app and allow the user to upload a status update via the app. I now want to include a feature to allow uploading of phot
You can upload photo by using iOS Facebook SDK as follows:
FBSDKSharePhoto *photo=[[FBSDKSharePhoto alloc]init];
photo.image=slideImage;
FBSDKSharePhotoContent *content = [[FBSDKSharePhotoContent alloc] init];
content.photos = @[photo];
[FBSDKShareDialog showFromViewController:self withContent:content delegate:self];
This works only if you configure iPhone Facebook settings.