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.
Delegates can refer to several concepts. An object can rely on another (a delegate) to perform a function. Delegation can also refer to programming language feature making use of the method lookup rules for dispatching self-calls. In C#, a delegate defines which method to call when an event is ...
0
votes
1answer
87 views
UIApplication delegate method is not called
I have a problem integrating Facebook SDK 3.2 with my app, my app goes to facebook app for approval and login, but when
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url ...
0
votes
1answer
93 views
Can't dismiss FBfriendPickerViewController from delegate method
I am using the facebook FBFriendPickerViewController and want the user to only be able to select one friend and then have it dismiss the view controller. In the FBFriendPickerDelegate, under the ...
1
vote
1answer
93 views
iOS delegate issues with KVO
I have a method which sends out a request and has a delegate responder. The method is being called by a KVO responder. The code works fine when I call it from viewDidLoad, but when I make the request ...
0
votes
0answers
123 views
Creating Facebook, Tweeter and Mail sharing object issue
I have an object that supposed to manage sharing with Tweeter, Facebook and by Email.
ShareKit.h
#import <Foundation/Foundation.h>
#import "FBConnect.h"
#import "Facebook.h"
#import ...
3
votes
1answer
151 views
iOS sdk - Feed Dialog styling is wrong and does not close after posting
Trying to add a simple dialog to an iOS app I am working on and running into a couple of strange behaviors.
Using:
[facebook dialog:@"feed"
andParams:params
andDelegate:self];
Yields ...
0
votes
0answers
538 views
getting a valid facebook session ios sdk
Hi guys I have tried to follow the steps at https://developers.facebook.com/docs/mobile/ios/build/
But what I need to do is run the facebook login or authenticate when a button is pressed in a ...
0
votes
1answer
161 views
Tracking individual requests to Open Graph through iOS SDK
I'm building an app, essentially a very basic Facebook client using the Facebook SDK for iOS. I have implemented the FBRequestDelegate protocol, and am sending my requests to the Open Graph API in the ...
0
votes
1answer
152 views
Setting up connection to Facebook not working as expected (iPhone)
I'm trying to create a connection to Facebook however I'm having an issue with the handling of the openUrl.
In the past I've been able to add the following in my app delegate class:
- ...
-1
votes
1answer
76 views
How to store incoming result as an id to a NSDictionary
So I'm making a facebook request for some data using the Facebook SDK for iOS. I get a response in the method:
- (void)request:(FBRequest *)request didLoad:(id)result {
NSLog(@"Result is: %@", ...
0
votes
2answers
629 views
Sharekit and facebook login conflicting
I have sharekit implemented in my app and it was working fine until I implemente login with facebook in another View.
The sharekit asks me to add the following on the app delegate:
- ...
1
vote
2answers
838 views
facebook fbDidLogin outside appdelegate
I have read many questions about the facebook login but until not I didnt succeed on solving my problem. I have made a few apps so far but I have never messed with the appDelegate before.
The thing ...
0
votes
1answer
292 views
Xcode / Objective-C Facebook Delegate Attempt
I'm trying to understand how a delegate works by using the Facebook SDK.
I have this as my view controller:
#import <UIKit/UIKit.h>
#import "FBConnect.h"
#import "FacebookClass.h"
...
0
votes
1answer
236 views
How do you access another UIViewController in appDelegate when login using facebook-ios-sdk?
answer:
Finally I use Notifications that I think is a elegant way to do it.
Thanks you Alan.
I have a facebook login (through facebook-ios-sdk) in my tab based app.
I initial "Facebook" in my ...
0
votes
1answer
246 views
ios facebook api not fire fbLogin
i need to use the facebook api:
in the appdelegate.m I have this code:
// Initialize Facebook
facebook = [[Facebook alloc] initWithAppId:@"MY_TOKEN" andDelegate:self];
// Check and retrieve ...
0
votes
1answer
1k views
How to perform a segue in FBSessionDelegate Method?
I've got a question about the facebook iPhone SDK, i hope somebody can help me! First of all: i'm using storyboards. In my AppDelegate file I initialize Facebook like this:
Start *startController = ...
0
votes
1answer
180 views
How to set the FBRequest delegate to nil in multiple different objects
I'm using the Facebook sdk for ios and I'm facing an issue on how to safely set the delegate to nil. My facebook object is a property of the appDelegate and I'm using this object in multiple different ...
0
votes
1answer
778 views
Facebook SDK on ios5 causes crash
I'm trying to integrate the Facebook SDK into an iOS5 project I'm building.
Following a piece of advice, I set the compiler flags on the Facebook specific files to '-fno-objc-arc'. This allows me to ...
2
votes
1answer
2k views
How to use Facebook Graph API on iOS properly
I am making an application where I need to invoke requests in multiple view controllers. I don't want the Facebook log in screen to show when the app is launched. It should only open when the user ...
1
vote
1answer
425 views
iphone app delegate with logic + facebook connect?
i'm really stuck on this one so please help!
I'm writing an app that implements facebook connect so when the app starts, I need it to check to see if it has a valid facebook access token, AND also ...
2
votes
1answer
1k views
Facebook iOS SDK - Custom Delegate
I am working on a new project with facebook integration. The app has to make different requests to facebook. The SDK provides one delegate that handles every request the same. Now i need to have a ...
0
votes
1answer
440 views
how to set delegate to nil?
my table view controller calls below in viewDidLoad
myFBRequest= [facebook requestWithGraphPath:[NSString stringWithFormat:@"%@/feed", myId] andDelegate:self];
and in dealloc,
if (myFBRequest) ...