APP跳转到微信

@property (nonatomic, strong) UIWebView *webView;




- (UIWebView *)webView
{
    if(!_webView)
    {
        _webView = [[UIWebView alloc] initWithFrame:CGRectZero];
    }
    return _webView;
}


 NSString *str =@"weixin://qr/JnXv90fE6hqVrQOU9yA0";
 [self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:str]]];

你可能感兴趣的:(APP跳转到微信)