Để đạt được điều này, chúng ta cần thêm một vài dòng Mã trong cả hai ứng dụng
Ứng dụng A: Bạn muốn mở từ Ứng dụng khác. (Nguồn)
Ứng dụng B : Từ Ứng dụng B, bạn muốn mở Ứng dụng A (Đích đến)
Mã cho ứng dụng A
Thêm một vài thẻ vào Plist of App A
Nguồn mở của ứng dụng A và quá khứ bên dưới XML
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>com.TestApp</string>
<key>CFBundleURLSchemes</key>
<array>
<string>testApp.linking</string>
</array>
</dict>
</array>
Trong ứng dụng đại biểu của Ứng dụng A - Nhận gọi lại tại đây
- (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
}
Bây giờ đến mã ứng dụng B -
Nếu bạn chỉ muốn mở Ứng dụng A mà không có bất kỳ tham số đầu vào nào
-(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];
}
}
Nếu bạn muốn chuyển tham số từ Ứng dụng B sang Ứng dụng A thì hãy sử dụng Mã bên dưới
-(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];
}
}
Lưu ý: Bạn cũng có thể mở Ứng dụng chỉ bằng cách gõ testApp.linking: //? trên trình duyệt safari