当我从 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];
}
我正在使用提要对话框进行用户输入