搜尋

首頁  >  問答  >  主體

微信開放平台 - ios APP能不能開啟微信然後透過微信跳到指定的URL?

程式碼如下:

/**
 跳转到微信,并打开指定的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;
}
天蓬老师天蓬老师2813 天前1044

全部回覆(1)我來回復

  • 仅有的幸福

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

    不可行,雖然微信有打開webview的scheme,但只有部分簽約用戶才能使用,需要帶上appid的

    回覆
    0
  • 取消回覆