国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

WeChat Open Platform - Can the ios APP open WeChat and then jump to the specified URL through WeChat?
天蓬老師
天蓬老師 2017-05-17 10:06:24
0
1
1087

code show as below:

/**
 跳轉(zhuǎn)到微信,并打開(kāi)指定的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)
     //打開(kāi)微信
    return [[UIApplication sharedApplication] openURL:[NSURL URLWithString:headString]];
        

    return FALSE;
}
天蓬老師
天蓬老師

歡迎選擇我的課程,讓我們一起見(jiàn)證您的進(jìn)步~~

reply all(1)
僅有的幸福

It’s not feasible. Although WeChat has a scheme to open webview, it can only be used by some contracted users. You need to bring your appid

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template