Dropbox文檔默認解釋了身份驗證的響應會被觸發到Appdelegate.m中 如何讓我自己的類的委託相同?處理Dropbox身份驗證響應
- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url
sourceApplication:(NSString *)source annotation:(id)annotation {
if ([[DBSession sharedSession] handleOpenURL:url]) {
if ([[DBSession sharedSession] isLinked]) {
NSLog(@"App linked successfully!");
// At this point you can start making API calls
}
return YES;
}
// Add whatever other url handling code your app requires here
return NO;
}
我不認爲你有一個選擇「openURL」的實現位置。我相信它必須是你的'UIApplication'類的成員(通常在名爲AppDelegate.m的文件中)。 – smarx