0

Does anyone knows if I can have an deep link in my iOS app to wechat account? I have an developer account with wechat (Chinese acc) just want to check if there are ways to deep link wechat account in my iOS app. So is there a way to deep link in my iOS app to wechat account chat?

Kimberlee Ho
  • 447
  • 1
  • 6
  • 23

1 Answers1

0

You can use the url schemes to open another iOS Apps from your iOS app.

Find below code to open the wechat app from your app when pressing button.

- (void)buttonPressed:(UIButton *)button
{
  NSString *customURL = @"weixin://";

  if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:customURL]])
  {
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:customURL]];
  }
  else
  {
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"URL error"
                              message:[NSString stringWithFormat:@"No custom URL defined for %@", customURL]
                              delegate:self cancelButtonTitle:@"Ok" 
                              otherButtonTitles:nil];
    [alert show];
  }

}

refer Apple documentation

Another SO Answer.

Community
  • 1
  • 1
Bluewings
  • 3,438
  • 3
  • 18
  • 31