Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
The basic image handling class of Cocoa-Touch on iOS.
0
votes
2answers
102 views
Why doesn't facebook accept my UIImage?
If I use the Facebook method:
[FBRequestConnection startForUploadPhoto:sendPicture
completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
...
2
votes
0answers
85 views
How to post multiple pictures with an open graph request to facebook?
Code that posts one image:
-(IBAction)postImageToFacebook:(id)sender {
DLog(@"");
NSMutableDictionary* params = [[NSMutableDictionary alloc] init];
[params ...
0
votes
3answers
131 views
how to scale screen image for posting on Facebook wall?
I'm working on an iPhone app one function of which posts an image of the iPhone screen to the user's Facebook wall, but I'm having trouble sizing and scaling the image properly. When the app posts to ...
0
votes
1answer
274 views
It's possible to post on Facebook without image? iOS 6 - Social.framework
I'm trying to use the new Social Framework to post a new post on Facebook.
[controller setInitialText:@".Thank's for help!"];
[controller addImage:[UIImage imageNamed:@"image.png"]];
[controller ...
1
vote
1answer
771 views
Displaying FB Profile Pic of loggedIn User in UITableView Cell
I am a new one to facebook integration. After I've gone through so many tutorials I've understood something from facebook SDK.
Please help me regarding this.
- (void)apiGraphMe
{
currentAPICall = ...
8
votes
3answers
2k views
How can I convert FBProfilePictureView to an UIImage?
Everything is working fine with FBProfilePictureView but I need to get that picture from FBProfilePictureView and turn it into an UIImage.
How should I do it?
I tried using this:
...
0
votes
1answer
261 views
Best practices for managing facebook friends pics in iOS App
i'm working on an iOS app which has a tableview containing facebook friends' list, I want to manage this list for scrolling performance.
i don't want to load the images each time user open that ...
0
votes
0answers
418 views
iOS Facebook SDK - Posting A UIImage To User's Wall
Ok so there is a lot of threads on this, but nothing seems to work for me.
My app allows users to post a photo (which is a UIImage created by a screenshot of the App) to facebook.
However, I can ...
0
votes
0answers
142 views
Facebook Graph API - isKindOfClass:[NSData class] not being called
I'm trying to make a request to get the user's picture. This worked fine before I updated the Facebook Graph API. The following is my request DidLoad, and for some reason, the isKindOfClass:[NSData ...
0
votes
1answer
825 views
How to post a UIImage to Facebook wall (iPhone/iPad)?
I have been looking around online at how to post a UIImage to the users Facebook wall using the Facebook SDK. However I'm really confused what the simplest option is. So far I have only used the ...
0
votes
1answer
142 views
Add Image to Facebook Wall
I am trying to implement a previous answer. Here is the code recommended:
-(void) postImageToFB:(UIImage *) image
{
NSData* imageData = UIImageJPEGRepresentation(image, 90);
Facebook* fb = ...
2
votes
1answer
300 views
How to rotate UIImage to post a photo on a website/Facebook with proper orientation?
if I take a photo with the iPhone camera, I see that photo is 90 degree rotated. For instance if device orientation is UIDeviceOrientationPortrait the UIImage orientation is UIImageOrientationRight.
...
2
votes
2answers
3k views
Posting a photo to Facebook
I am trying very hard to find some sample codes for posting on facebook. Below is the code i found. However, may i know how to modify it in order to me to post a image instead of text ?
...
3
votes
2answers
1k views
How to take a screenshot in your App and publish it on facebook?
I'm trying to use facebook within my App by posting a screenshot of my App on my wall.
I already made the functions for taking a screenshot
UIGraphicsBeginImageContext(self.view.bounds.size);
...
0
votes
1answer
145 views
How to publish UIImage to Facebook
I want to publish image from UIImage to Facebook however this code needs imageURL. How?
(void) publishFeedWithName:(NSString*)name
captionText:(NSString*)caption
...
1
vote
2answers
2k views
Posting picture from iphone to facebook wall
I'm using Facebook Connect for iOS to post a picture, taken in an app, to facebook wall, possible using the local file URL, according to another post:
adding photo on facebook wall.
The URL appears ...
1
vote
3answers
2k views
Putting Facebook profile picture to UIImage
I'm trying to get a profile picture from Graph API by calling "me/picture" or "/picture". However it seems that the response that's given is not a JSON response... I haven't been able to read the ...
2
votes
4answers
4k views
Upload a UIImage from iPhone to Facebook
How do you upload a UIImagefrom iPhone to Facebook?
I'm using facebook-ios-sdk-8b3c17d version, and none of the other examples seem to be using the new facebook API.
Thanks