I would like to be able to launch dropbox app within my app. Therefore I would like to know if dropbox app has a URL scheme that I can use to call openURL, something like this except I don't know what this string should be.
NSURL *myURL = [NSURL URLWithString:@"dropbox://"];
[[UIApplication sharedApplication] openURL:myURL];
Thanks,