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 an iPhone app that is a simple wrapper for a website. It worked fine pre-iOS5, but has problems with anything after that. It loads the website just fine, which begins with a simple login page. Once logged in, the user can navigate the pages okay. The problem, though, is that when the user attempts to send a message through the site (simple web form), it sends them back to the login page. When accessing the site through a desktop browser, or even through Safari on the iPhone, it works great and does not have this issue.

Here is the code:

[webView loadRequest:[NSURLRequest 
    requestWithURL:[NSURL URLWithString: @"https://xxxxxx"]]];
webView.scalesPageToFit = YES;
webView.opaque = NO;
webView.backgroundColor = [UIColor clearColor];
for (int x = 0 ; x < 10 ; ++x ){ 
    [[[[[webView subviews] objectAtIndex:0] subviews] objectAtIndex:x]setHidden:YES];
}

Like I said, it's dead simple. It just doesn't behave the same as the Safari mobile browser. I suspect that it may have something to do with cookies, so I tried setting NSHTTPCookieAcceptPolicyAlways, but that didn't have any effect.

Any ideas?

Thanks!

share|improve this question
could it be due to javascript, turn off js in mobile safari and see if the form works – Nick Nov 29 '12 at 13:49
Have you implemented webview delegates?? – AppleDelegate Nov 29 '12 at 13:55
turned off js in mobile safari and the form still works in the browser. Not sure if it matters, but the website uses JQueryMobile and probably hasn't been updated in a year. – Andrew Patzer Nov 29 '12 at 14:08
Delegates might be the answer. I'll check it out. – Andrew Patzer Nov 29 '12 at 14:13
After doing more research, it appears that JQuery Mobile has a lot of issues with UIWebView. – Andrew Patzer Nov 29 '12 at 17:38

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.