我正在开发Facebook iOS应用程序。我遇到的问题是没有方法initWithAppID
,只有initWithAppID andDelegate:
但我不想在初始化对象时指定委托,因为我在appDelegate和<FBRequestDelegate>
中这样做,即将在我的UIView子类中实现。
所以我的问题是:在andDelegate:
初始化Facebook对象以及设置什么更好?
非常感谢答案,
阿尔乔姆
答案 0 :(得分:3)
FBSessionDelegate上的所有方法都标记为可选,因此您应该能够将nil作为委托传递。
/**
* Your application should implement this delegate to receive session callbacks.
*/
@protocol FBSessionDelegate <NSObject>
@optional
/**
* Called when the user successfully logged in.
*/
- (void)fbDidLogin;
/**
* Called when the user dismissed the dialog without logging in.
*/
- (void)fbDidNotLogin:(BOOL)cancelled;
/**
* Called when the user logged out.
*/
- (void)fbDidLogout;
@end
Facebook类将委托作为已分配的属性,因此您可以稍后进行设置。
@property(nonatomic, assign) id<FBSessionDelegate> sessionDelegate;