我正在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
}
使用此命令在 iPhone 应用程序中注销 Drop box 帐户
[[DBSession sharedSession] unlinkAll];
您无法注销,只能使用
- (void)cancelAllRequests;
取消请求。并清除设备缓存。您将自动注销。