recherche

Maison  >  Questions et réponses  >  le corps du texte

WeChat Open Platform - L'application iOS peut-elle ouvrir WeChat, puis accéder à l'URL spécifiée via WeChat ?

Le code est le suivant :

/**
 跳转到微信,并打开指定的URL

 @return <#return value description#>
 */
+(BOOL) openWeChat:(NSString *)url
{
    //wx0b577bb0399ff7d7
    NSString *headString = @"weixin://";
    
    headString =  [headString stringByAppendingString:url];
    BOOL canOpen = [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"weixin:/"]];
    if(canOpen)
     //打开微信
    return [[UIApplication sharedApplication] openURL:[NSURL URLWithString:headString]];
        

    return FALSE;
}
天蓬老师天蓬老师2742 Il y a quelques jours1003

répondre à tous(1)je répondrai

  • 仅有的幸福

    仅有的幸福2017-05-17 10:08:24

    Ce n'est pas réalisable. Bien que WeChat ait un système pour ouvrir la vue Web, il ne peut être utilisé que par certains utilisateurs sous contrat. Vous devez apporter l'application

    .

    répondre
    0
  • Annulerrépondre