Bunu başarmak için her iki uygulamada da birkaç satır kod eklememiz gerekiyor
Uygulama A: Başka bir Uygulamadan açmak istediğiniz. (Kaynak)
Uygulama B : Uygulama B'den Uygulama A'yı (Hedef) açmak istiyorsunuz
Uygulama A Kodu
XML A'nın altındaki Uygulama A ve Geçmiş A'nın Açık bir Liste Kaynağı'na birkaç etiket ekleyin
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>com.TestApp</string>
<key>CFBundleURLSchemes</key>
<array>
<string>testApp.linking</string>
</array>
</dict>
</array>
App A Uygulama delegesi - Buradan geri arama alın
- (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
}
Şimdi Uygulama B koduna geliyor -
App A'yı herhangi bir giriş parametresi olmadan açmak istiyorsanız
-(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];
}
}
Eğer gelen parametre geçirmek istiyorsanız App B için App A daha sonra Kod aşağıda kullanmak
-(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];
}
}
Not: Uygulamayı yalnızca testApp.linking: //? safari tarayıcısında