gpt4 book ai didi

iphone - FBRequest委托(delegate)方法请求:didLoad: is not getting called

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:24:12 36 4
gpt4 key购买 nike

我正在使用 Facebook ios sdk 进行共享,因为我需要获取用户基本信息,例如 userName 我正在做类似下面的事情,在@interface

@interface ViewController : UIViewController<FBRequestDelegate,FBDialogDelegate,FBSessionDelegate>
--------
@property (nonatomic,retain) FBRequest *fbRequestObj;

在@implementation中

- (void)viewDidLoad
{
fbRequestObj = [[FBRequest alloc] init];
[fbRequestObj setDelegate:(id)self];
[super viewDidLoad];
}

- (void)request:(FBRequest *)request didLoad:(id)result {
NSString* name = [result objectForKey:@"name"];
userName = [NSString stringWithFormat:@"Logged in as %@",name];
}

但我的问题是上面的 FBRequest 委托(delegate)在任何情况下都不会被调用。我的实现方式是否正确?如果不是请指导我。提前感谢任何帮助。

最佳答案

您分配/初始化 FBRequest 对象的方式看起来不正确。
根据documentation ,您可以尝试执行以下操作:

-(void)viewDidLoad
{
/* create the params dictionary */
self.fbRequestObj = [FBRequest requestWithParams:yourParamsDictionary
delegate:self];
[super viewDidLoad];
}

关于iphone - FBRequest委托(delegate)方法请求:didLoad: is not getting called,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8699201/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com