- (void)jumpToAnotherApp {
UIApplication *app = [UIApplication sharedApplication];
NSURL *AnotherAppBaseURL = [NSURL URLWithString:@"Xxxx://"];
if (![app canOpenURL:AnotherAppBaseURL]) {
return;
}
[app openURL:[NSURL URLWithString:@"Xxxx://xxxxxxxx"]];
}
关于URL Schemes在这里找