SECURITY WARNING:"Please treat the URL above as you would your password and do not share it with anyone. in ios

后端 未结 4 710
逝去的感伤
逝去的感伤 2021-01-25 03:46

I am working on app that contains facebook login .After login with face book I need to go to native application & app should display user name & image that was there in

4条回答
  •  盖世英雄少女心
    2021-01-25 04:17

    I found one solution. I hope it will work for you.

    Just paste this UIWebViewDelegate method in your FbGraph.m file....

    - (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{
    
        if([request.URL.relativeString hasPrefix:@"https://www.facebook.com/connect/login_success.html" ])
            self.webView.hidden=TRUE;
        return YES;
    }
    

提交回复
热议问题