9

我正在使用 iOS Dropbox SDK 并想检查我的应用是否已与 Dropbox 帐户相关联。所以我这样做:

if (self.isLinked) {
    NSLog(@"linked");
}

但是self.isLinked总是返回YES。即使在清洁和重置 iPhone 模拟器之后。


这只发生在 iOS 模拟器而不是真实设备上运行时。我不知道为什么会发生这种情况,但如果其主机 Mac 与 Dropbox 帐户相关联,则模拟器上的 Dropbox SDK 也会相关联。

要在模拟器中获得真实的行为,请在 Dropbox 首选项中取消关联您的 Mac。

4

1 回答 1

15

2012 年年中的某个时候(找不到 iOS SDK 版本日志),Dropbox iOS SDK 行为更改为通过卸载/重新安装应用程序(甚至在设备上)保持“链接”状态。因此,在接收“链接”回调时执行某些操作的应用程序(如我的)在重新安装后将无法运行。

一种解决方案是在首次运行时取消链接。像这样:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    if ([[NSUserDefaults standardUserDefaults] objectForKey:HAS_RUN_KEY] == nil)
    {
        // ensure you have a DBSession to unlink
        if ([DBSession sharedSession] == nil)
        {
            DBSession* dbSession = [[[DBSession alloc] initWithAppKey:DROPBOX_KEY appSecret:DROPBOX_SECRET root:kDBRootAppFolder] autorelease];
            [DBSession setSharedSession:dbSession];
        }

        // unlink
        [[DBSession sharedSession] unlinkAll];

        // set 'has run' flag
        [[NSUserDefaults standardUserDefaults] setBool:YES forKey:HAS_RUN_KEY];
        [[NSUserDefaults standardUserDefaults] synchronize];
    }
}
于 2012-10-30T09:29:58.840 回答