Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a local html page (saved on the router) with an agree button to connect to a local WiFi system and a redirect to our website. When you connect to the WiFi system, you automatically get to this page. But the problem is that in some cases the page is opened with UIWebView.

So when you click the agree button in UIWebView, you get connected but the redirect doesn't work, because UIWebView closes and safari is not opened.

If you click on the agree button in safari, everything works fine.

I found a code to open links in safari from a UIWebView application.

NSURL* url = [request URL];
if (UIWebViewNavigationTypeLinkClicked == navigationType)
{
    [[UIApplication sharedApplication] openURL:url];
    return NO;
}

But this is a html page and i have no idea how to use that.

So does anybody know how to open the link in safari IF VIEWED with UIWEB?

Our html button code looks like this:

<form name="login" method="post" action="http://111.111.1.1:5280/">
<input type="hidden" name="accept_terms" value="yes" />
<input type="hidden" name="redirect" value="http://www.oursite.com">
<input type="hidden" name="mode_login">
<input type="image" src="img/AGREE.png" alt="Agree">
</form>

THANX

share|improve this question

1 Answer

Try this line

 NSURL *url = [NSURL URLWithString:@"your string/url"];

To open link in Safari copy this function in your class:

 - (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType 
{
   // NSLog(@"shouldStartLoadWithRequest Loading: %@", [request URL]);
   return TRUE;

}

Hope this helps..

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.