vote up 1 vote down star

Hi there, I'm trying to read cookies using an xcode application im writing for iphone and testing on emulator. However when I run the code below the value stored in mumcookies is 0. Cookies are allowed via iphone settings and I also used mobile safari to navigate to gmail, hotmail and other cookie setting sites to increase cookie count on emulator, but no luck. Your thoughts are much appreciated, really hope Im not doing something real silly :(

NSHTTPCookieStorage *jar = [NSHTTPCookieStorage sharedHTTPCookieStorage]; NSInteger numcookies = [[jar cookies] count];

tony

flag

1 Answer

vote up 2 vote down check

Because of sandboxing on the iPhone you don't have access to Safari's cookies. You can only access cookies created within your application - by an UIWebKit for example.

link|flag
hi mfazekas, Thanks again for your response. The cookies are set via a javascript of a page i load from documents directory of my app into the UIWebView control of my application. Would this ensure that the cookies are stored within my app sandbox? Thanks for your help man. – TonyNeallon Feb 10 at 10:52

Your Answer

Get an OpenID
or

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