我在 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
}