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

时间:2012-09-12 05:50:57

标签: ios api dropbox logout

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

}

2 个答案:

答案 0 :(得分:5)

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

 [[DBSession sharedSession] unlinkAll];

答案 1 :(得分:0)

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