Per raggiungere questo obiettivo, dobbiamo aggiungere alcune righe di codice in entrambe le app
App A: che si desidera aprire da un'altra app. (Fonte)
App B : dall'app B si desidera aprire l' app A (destinazione)
Codice per l' app A
Aggiungi alcuni tag nella Plist of App A
Apri la Plist Sorgente dell'app A e passato sotto XML
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>com.TestApp</string>
<key>CFBundleURLSchemes</key>
<array>
<string>testApp.linking</string>
</array>
</dict>
</array>
In App delegato dell'app A - Ottieni richiamata qui
- (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
}
Ora arrivo al codice App B -
Se vuoi solo aprire l'App A senza alcun parametro di input
-(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 si desidera passare parametri da App B a App A quindi utilizzare sotto codice
-(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: puoi anche aprire l'app semplicemente digitando testApp.linking: //? sul browser safari