如何在 Dropbox iPhone 应用程序中集成注销功能?

问题描述 投票:0回答:2

我正在iPhone中使用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

}
ios dropbox logout
2个回答
5
投票

使用此命令在 iPhone 应用程序中注销 Drop box 帐户

 [[DBSession sharedSession] unlinkAll];

0
投票

您无法注销,只能使用

- (void)cancelAllRequests;
取消请求。并清除设备缓存。您将自动注销。

© www.soinside.com 2019 - 2024. All rights reserved.