Ios 没有收到facebook的回复

Ios 没有收到facebook的回复,ios,facebook,fbrequest-form,Ios,Facebook,Fbrequest Form,当我从iPhone应用程序向墙上发送帖子时,我遇到了一个问题。 我已经实现了所有委托方法,并且该方法: -(void)request:(FBRequest *)request didReceiveResponse:(NSURLResponse *)response { // Keep this just for testing purposes. NSLog(@"received response"); } 我的应用程序运行正常,帖子出现在我的墙上,但我的应用程序没有得到任何

当我从iPhone应用程序向墙上发送帖子时,我遇到了一个问题。 我已经实现了所有委托方法,并且该方法:

 -(void)request:(FBRequest *)request didReceiveResponse:(NSURLResponse *)response {
    // Keep this just for testing purposes.
    NSLog(@"received response");
}
我的应用程序运行正常,帖子出现在我的墙上,但我的应用程序没有得到任何响应,并且在我的活动指示器上出现了问题NSLog在控制台中不显示任何内容。

有人知道问题出在哪里吗?我要死在这里:-/

编辑:

- (IBAction)fbButtonPressed:(id)sender {

// Create the parameters dictionary that will keep the data that will be posted.
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                               @"330334280387192", @"app_id",
                               nil];

// Publish.
[self.facebook dialog:@"feed" andParams:params andDelegate:self];
}


我正在使用提要对话框进行用户输入

显示您发布到Facebook的代码片段。您没有忘记为您的类指定协议吗?@PabloSantaCruz补充道:)@dmirkitanov没有t@perigo德米尔基塔诺夫说的。