Para conseguir isso, precisamos adicionar algumas linhas de código nos aplicativos.
Aplicativo A: que você deseja abrir em outro aplicativo. (Fonte)
Aplicativo B : no aplicativo B, você deseja abrir o aplicativo A (destino)
Código para o aplicativo A
Adicione algumas tags ao Plist do aplicativo A
Open Plist do aplicativo A e passado abaixo de XML
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>com.TestApp</string>
<key>CFBundleURLSchemes</key>
<array>
<string>testApp.linking</string>
</array>
</dict>
</array>
Delegado no aplicativo A - receba retorno de chamada aqui
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url
sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
{
// You we get the call back here when App B will try to Open
// sourceApplication will have the bundle ID of the App B
// [url query] will provide you the whole URL
// [url query] with the help of this you can also pass the value from App B and get that value here
}
Agora chegando ao código do aplicativo B -
Se você deseja apenas abrir o App A sem nenhum parâmetro de entrada
-(IBAction)openApp_A:(id)sender{
if(![[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"testApp.linking://?"]]){
UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"App is not available!" message:nil delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil];
[alert show];
}
}
Se você deseja passar o parâmetro do aplicativo B para o aplicativo A , use o código abaixo
-(IBAction)openApp_A:(id)sender{
if(![[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"testApp.linking://?userName=abe®istered=1&Password=123abc"]]){
UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"App is not available!" message:nil delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil];
[alert show];
}
}
Nota: Você também pode abrir o aplicativo apenas digitando testApp.linking: //? no navegador safari