Reading cookies using xcode on the iphone - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T20:36:15Zhttp://stackoverflow.com/feeds/question/531712http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/531712/reading-cookies-using-xcode-on-the-iphone1Reading cookies using xcode on the iphoneTonyNeallon2009-02-10T09:50:37Z2009-02-10T10:26:05Z
<p>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 :( </p>
<p>NSHTTPCookieStorage *jar = [NSHTTPCookieStorage sharedHTTPCookieStorage];
NSInteger numcookies = [[jar cookies] count];</p>
<p>tony</p>
http://stackoverflow.com/questions/531712/reading-cookies-using-xcode-on-the-iphone/531810#5318102Answer by mfazekas for Reading cookies using xcode on the iphonemfazekas2009-02-10T10:26:05Z2009-02-10T10:26:05Z<p>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.</p>