I call this :
NSString *authLink = @"https://plus.google.com/share?url=http://stackoverflow.com";
NSURL *url = [NSURL URLWithString:authLink];
[vkWebView loadRequest:[NSURLRequest requestWithURL:url]];
after I sent the text, UIWebView loaded my google+ wall. How hide webview and back to my app?
UIWebView? when do you want to get back to you app? after the data has been displayed in the web view? after the user does some action? - sergio