Reading cookies using xcode on the iphone - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T20:36:15Z http://stackoverflow.com/feeds/question/531712 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/531712/reading-cookies-using-xcode-on-the-iphone 1 Reading cookies using xcode on the iphone TonyNeallon 2009-02-10T09:50:37Z 2009-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#531810 2 Answer by mfazekas for Reading cookies using xcode on the iphone mfazekas 2009-02-10T10:26:05Z 2009-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>