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
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;
}