TonyNeallon
TonyNeallon

Reputation: 6607

Read Cookies Using xcode in iphone app

My application needs to be able to read cookies stored by a page loaded in the UIWebView. I need to be able to read the cookies using xcode so that I can store some values in application settings. Does anyone know if its possible to read cookies using xcode? Your help is much appreciated. Stuck on this for ages. Tony

Upvotes: 0

Views: 4779

Answers (1)

mfazekas
mfazekas

Reputation: 5709

You can use NSHTTPCookieStorage to read/modify cookies. UIWebView is using this storage.

Upvotes: 3

Related Questions