Are apps-cookies stored in separate per-app location, or shared throughout the device? Are third-party cookies allowed (read/write)? Are persistant cookies allowed?
Asked
Active
Viewed 4,549 times
1 Answers
5
Your application has its own "cookie jar" in the [NSHTTPCookieStorage sharedHTTPCookieStorage]
container. An application only has access to cookies it creates or destroys, within the usual application sandbox model that applies for documents and preferences, as well.

Community
- 1
- 1

Alex Reynolds
- 95,983
- 54
- 240
- 345
-
thanks for the answer! do you know if third party cookies works (advertising) ? or if they are blocked (as in safari) ? – Matthieu Feb 19 '11 at 17:41
-
If you have an advertising framework integrated in your application, that framework is part of your application and can access resources within the application's sandbox. – Alex Reynolds Feb 19 '11 at 17:43