Untuk mencapai ini, kita perlu menambahkan beberapa baris Kode di kedua Aplikasi
Aplikasi A: Yang ingin Anda buka dari Aplikasi lain. (Sumber)
Aplikasi B : Dari Aplikasi B Anda ingin membuka Aplikasi A (Tujuan)
Kode untuk Aplikasi A
Tambahkan beberapa tag ke Plist of App A
Open Plist Source dari App A dan Past di bawah XML
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>com.TestApp</string>
<key>CFBundleURLSchemes</key>
<array>
<string>testApp.linking</string>
</array>
</dict>
</array>
Di App delegate App A - Dapatkan Panggilan Balik di sini
- (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
}
Sekarang datang ke kode App B -
Jika Anda hanya ingin membuka Aplikasi A tanpa parameter input apa pun
-(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];
}
}
Jika Anda ingin meneruskan parameter dari App B ke App A, gunakan Kode di bawah ini
-(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];
}
}
Catatan: Anda juga dapat membuka Aplikasi dengan cukup ketik testApp.linking: //? di browser safari