0

我目前正在使用新的 Facebook SDK,但我遇到了一个非常奇怪的问题。我有一个名为 FacebookExplorerTableViewController 的视图控制器,在我的 viewdidload 中有以下代码:

if(appDelegate.session.isOpen)
    {
        [self receiveAlbums];
    }
    else 
    {
        appDelegate.session = [[FBSession alloc] init];

        appDelegate.session = [FBSession sessionOpenWithPermissions:nil completionHandler:^(FBSession *session, FBSessionState status, NSError *error) {
            NSLog(@"opened session");
            if(!error) [self receiveAlbums];
            else NSLog(@"error: %@",error);
        }];
}

当我运行它时,一切都很好。但是,我有另一个视图控制器,名为 SharingSettingsTableViewController,我可以在其中选择注销:

[appDelegate.session closeAndClearTokenInformation];

当我尝试注销时,出现 xCode 崩溃:

2012-08-09 21:29:19.683 My Albums[2197:17903] opened session
2012-08-09 21:29:19.684 My Albums[2197:17903] requesting albums
2012-08-09 21:29:19.695 My Albums[2197:17903] access token: (null)
2012-08-09 21:29:19.697 My Albums[2197:17903] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSPlaceholderDictionary initWithObjects:forKeys:count:]: attempt to insert nil object from objects[0]'
*** First throw call stack:
(0x1b6d022 0x1f56cd6 0x1aac7db 0x1ac4e86 0x757a5 0x754f4 0xa17e2 0x9ef39 0x676f9 0x92c3f1 0x1b6ee99 0x55514e 0x5550e6 0x5fbade 0x5fbfa7 0x5fb266 0x57a3c0 0x57a5e6 0x560dc4 0x554634 0x232eef5 0x1b41195 0x1aa5ff2 0x1aa48da 0x1aa3d84 0x1aa3c9b 0x232d7d8 0x232d88a 0x552626 0x21ed 0x2155)
terminate called throwing an exception

它似乎再次运行我的完成块!控制台中的“请求专辑”来自对 receiveAlbums 的调用。

为什么这个完成块再次运行?在我转到设置视图控制器时,我已经释放了 FacebookExplorerTableViewController!这怎么能运行,我怎么能摆脱错误?:)

提前致谢!

4

1 回答 1

4

我有同样的问题。我的问题是[FBSession activeSession].accessToken通过将其传递给 NSDictionary 来保留。最简单的解决方案是通过 a[NSString stringWithFormat:@"%@", [FBSession activeSession].accessToken]而不是直接[FBSession activeSession].accessToken使用。

于 2012-08-14T10:41:34.453 回答