When I use <meta name="apple-mobile-web-app-capable" content="yes">, my page doesn't set, load, or retrieve cookies. Is there any way to get around this? Can't find anything useful in Google.

link|improve this question

Could you be more specific about how you set/retrieve cookies? I have made a web app for the iPad and cookies worked fine with JavaScript. – Soumya Feb 5 '11 at 2:41
I use the jQuery cookie script to set/retrieve cookies. It works fine without the 'apple-mobile-web-app-capable' code but with it it doesn't work. – Charlie Feb 5 '11 at 18:20
feedback

1 Answer

UIWebviews don't store cookies. Use HTML5 local storage instead.

link|improve this answer
I would use localstorage but I have a number of scripts including one that uses authentication that stores information in cookies and it would be too cumbersome to change the scripts over. – Charlie Feb 5 '11 at 18:19
HTML5 local storage currently isn't XSS safe. If you're storing user credentials, you're opening yourself up for attacks. michael-coates.blogspot.com/2010/07/… – Donovan Woodside Apr 6 '11 at 16:06
So what's the best way to do this? If cookies don't work with UIWebviews and localstorage is not safe, what else is there? – Charlie Jun 5 '11 at 17:19
1  
Maybe store credential cookies outside the webview in the keychain using native code? Then pass them back to known website URLs directly using CF network calls as needed when prompted from the web view? – hotpaw2 Jun 5 '11 at 17:33
1  
Hybrid. Web app + a bit of native app. If you're using a UIWebview, you have both. – hotpaw2 Jun 6 '11 at 2:30
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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