使用FBConnect iphone登录Facebook后,白色空白屏幕

问题描述

| 我正在使用FBConnect API ...并且在按下按钮时正在使用此代码
- (IBAction)postGradesTapped:(id)sender {
_posting = YES;
// If we\'re not logged in,log in first...
if (![_session isConnected]) {
    self.loginDialog = nil;
    _loginDialog = [[FBLoginDialog alloc] init];    
    [_loginDialog show];    
}
// If we have a session and a name,post to the wall!
else if (_facebookName != nil) {
    [self postToWall];
}
// Otherwise,we don\'t have a name yet,just wait for that to come through.
} 现在,当我按下按钮时... 白色空白屏幕出现... :( 可能是什么问题?     

解决方法

根据您的代码,成功登录后,您就会在墙上发布消息。因此,它可能会变成空白屏幕。尝试在登录成功后在控制台上打印一些内容。