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

Sam*_*mar 1 api dropbox logout ios

我正在使用iPhone中的Drop box应用程序,使用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

}
Run Code Online (Sandbox Code Playgroud)

Sam*_*mar 5

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

 [[DBSession sharedSession] unlinkAll];
Run Code Online (Sandbox Code Playgroud)