1

我在 iPhone 的 Dropbox 应用程序中工作,使用 Dropbox_SDK 开发这个应用程序,我已经从我的 dropBox 帐户上传和下载了一个文件,它运行良好。然后我尝试在 iPhone 中注销 Dropbox 帐户,但我不知道该集成,如何做到这一点?

- (void)viewDidLoad
{
    UIButton *Logout =[[UIButton buttonwithtype:UIButtonTypeRoundedRect];
    Logout.frame=cgrectmake(10,10,100,50);
    [Logout setTitle:@"Log Out" Forstate:UIControlStateNormal];
    [Logout addTarget:self action:@selector(Method)ForcontrolEvent:UIControlEventTouchUpInside];
    [Self.view addsubview:Logout];
}

-(void)Method
{

    //Logout Integration

}
4

2 回答 2

5

使用此命令在 iPhone 应用程序中注销投递箱帐户

 [[DBSession sharedSession] unlinkAll];
于 2012-09-12T07:48:38.503 回答
0

您无法注销,只能使用 取消请求并- (void)cancelAllRequests;清除设备的缓存。您将自动注销。

于 2012-09-12T06:24:41.313 回答